Skip to main content

::: vuaskari.com ::: (Urgent)..MCS first semester. CS-201 Help needed in coding(Plz its urgent)

#include<iostream.h>
#include<conio.h>

void getinput(double sal[][2], int numemps);
void calcnetsal(double sal[][2], int numemps);
void findunluckies(double sal[][2], int numemps, int lucky[]);
void markifunlucky(double sal[][2], int numemps, int lucky[], int upperbound, int empnbr);
void printunluckies(int lucky[], int numemps);

void main (void)

{
const int arraysize=100;
double sal[arraysize][2];
int lucky[arraysize]={0};
int numemps;

cout<< "Please enter the number of employee's in your company = ";
cin>> numemps;
cout<< endl;

getinput(sal,numemps);

cout<< "\n\n Calculating the net Salaries... ";
calcnetsal(sal,numemps);

cout<< "Location the unlucky employee's...";
findunluckies(sal,numemps,lucky);

cout<< "\n\n Printing the unlucky employee's...";
printunluckies(lucky,numemps);

}

void getinput(double sal[][2], int numemps)
{
for (int i=0, i<numemps;i++)
{
cout<< "\n Please enter the gross salary of the employee #..="<< i;
cin>> sal[i][0];
}
}

void calcnetsal(double sal[][2], int numemps)
{
for (int i=0, i<numemps;i++)
{
if(sal[i][0]>=0 && sal[i][0]<=5000)
{
sal[i][1]=sal[i][0];
}
else if(sal[i][0]>=5001 && sal[i][0]<=10000)
{
sal[i][1]=sal[i][0]-(.05*sal[i][0]);
}
else if(sal[i][0]>=10001 && sal[i][0]<=20000)
{
sal[i][1]=sal[i][0]-(.1*sal[i][0]);
}
else if(sal[i][0]>=20001)
{
sal[i][1]=sal[i][0]-(.15*sal[i][0]);
}
else
{
}
}
}

void findunluckies(double sal[][2], int numemps, int lucky[])
{
for (int i=0, i<numemps;i++)
{
if(sal[i][0]>=0 && sal[i][0]<=5000)
{
}
else if(sal[i][0]>=5001 && sal[i][0]<=10000)
{
markifunlucky(sal,numemps,lucky,5001,i);
}
else if(sal[i][0]>=10001 && sal[i][0]<=20000)
{
markifunlucky(sal,numemps,lucky,10001,i);
}
else if(sal[i][0]>=20001)
{
markifunlucky(sal,numemps,lucky,20001,i);
}
}
}

void markifunlucky(double sal[][2], int numemps, int lucky[], int upperbound, int empnbr)
{
for (int i=0, i<numemps;i++)
{
if(sal[i][0]<upperbound && sal[i][1]>=sal[empnbr][1])
{
lucky[empnbr]=1;
break;
}
}
}

void printunluckies(int lucky[], int numemps)
{
for (int i=0, i<numemps;i++)
{
if(lucky[i]==1
{
cout<< "\n Employee No.: "<< i;
}
}
}


Asalam o Alikum,

I am looking for help in coding real world program lecture # 13. The program is attached for your kind persual. Anybody who has a sound knowledge of coding is requested to check the attached program for errors. The problem is when i try to run a void main(void) program on my system error as void must return int; populates. It is so irritating and also i cann't be able to complete my assignment # 2 of CS-201 because of this error. It is requested to help me in this regard.

I will be much thankful. Waiting for a positive reply.

God bless you all.

Regards,
M yaseen
yaseenraja2000@gmail.com

--
We say, "Be one as Pakistani Nation and grow up for Pakistan's Future". Wish you all the best. Join www.vuaskari.com,
To post to this group, send email to vuaskari_com@googlegroups.com
Visit these groups:
This (Main) Group:http://groups.google.com/group/vuaskari_com?hl=en?hl=en
MIT/MCS Group: http://groups.google.com/group/vu_askarimit?hl=en?hl=en
HRM Group: http://groups.google.com/group/askari_hrm?hl=en?hl=en
Banking Group: http://groups.google.com/group/askari_banking?hl=en?hl=en
Management: https://groups.google.com/group/vuaskari_mgt?hl=en
Marketing: https://groups.google.com/group/vuaskari_mkt?hl=en
MIS Group: http://groups.google.com/group/askari_mis?hl=en

Comments

Popular posts from this blog

[vu-students] Urdu Love Letters ............ ahahahahahhahahah

  The One & Only .......... IRFAN. Italy. http://groups.yahoo.com/group/p_se_poetry   -- You received this message because you are subscribed to the Google Groups "VU Students" group. To post to this group, send email to vu-students@googlegroups.com To unsubscribe from this group, send email to vu-students+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/vu-students?hl=en_PK?hl=en

::: vuaskari.com ::: Success comes in surprises.

Saudi Student thanks Allah for his success … Read more:  http://www.themuslimtimes.org/2012/11/countries/saudi-arabia/saudi-student-thanks-allah-for-his-success#ixzz2CltzJ7dn  Blogger    http://khurrams-blogkm.blogspot.com/ Also contributes in..  http://vu-bytes.vu.edu.pk/ REGARDS BC100200226 Khurram Mobin -- We say, "Be one as Pakistani Nation and grow up for Pakistan's Future". Wish you all the best. Join www.vuaskari.com, To post to this group, send email to vuaskari_com@googlegroups.com Visit these groups: This (Main) Group: http://groups.google.com/group/vuaskari_com?hl=en?hl=en MIT/MCS Group: http://groups.google.com/group/vu_askarimit?hl=en?hl=en HRM Group: http://groups.google.com/group/askari_hrm?hl=en?hl=en Banking Group: http://groups.google.com/group/askari_banking?hl=en?hl=en Management: https://groups.google.com/group/vuaskari_mgt?hl=en Marketing: https://groups.google.com/group/vuaskari_mkt?hl=en MIS Group: http:/...

Re: ::: vuaskari.com ::: MCS Students Group

please send me solution of mth 202 quiz 1 On Sun, May 11, 2014 at 8:51 PM, Muhammad Asif < itsvividmirror@gmail.com > wrote: cs 604 605 607 610 catring stock On Thu, May 8, 2014 at 4:32 PM, Malik Aslam < malik693012@gmail.com > wrote: I am also student of MCS.  On Wed, May 7, 2014 at 3:50 PM, Zadee Ali < abdullah.313.27@gmail.com > wrote: i have also these subjects. On Tue, May 6, 2014 at 1:26 PM, Shahzad Ali < saim2.vti@gmail.com > wrote: i am mcs student 3rd semester On Tue, Apr 29, 2014 at 12:02 PM, Jasmine Khan < jasmine.khan3939@gmail.com > wrote: I can help. On Apr 29, 2014 9:36 AM, "Nadeem Abbas (BP/Acc)" < nadeem.abbas@haleebfoods.com > wrote: > > Is there any or more students of the following subjects of MCS and want to do combine study and help each others? > >   > > CS304-OOP > > CS401-Assembly > > CS607-AI > > CS614-Data W/H > > ...