#include<iostream.h>
#include<conio.h>
void GetAnnualIncome(int[],int);
void CalcIncChange(int[], double[],int);
void CalcChangePercent(int[], double[], float[], int);
void IncDecYears(double[], int);
void MaxIncDecYears(int,int);
main()
{
int anlIncm[10];
double chngInc[10];
float chngIncPer[10];
cout<<"\n\n .... ABC Company Income Sheet ....\n"<<endl;
cout<<"Enter Income for Past 10 Years (in Millions)\n"<<endl;
GetAnnualIncome(anlIncm,10);
CalcIncChange(anlIncm, chngInc, 10);
CalcChangePercent(anlIncm, chngInc,chngIncPer, 10);
IncDecYears(chngInc, 10);
cout<<endl<<endl;
system("pause");
}
void GetAnnualIncome(int inc[],int size)
{
int var;
for(int i=0;i<size;i++)
{
cout<<"Income for Year "<<2000+i<<" : ";
cin>>var;
if(var < 0)
{
i--;
}
else if(var >=0 )
{
inc[i] = var;
}
}
}
void CalcIncChange(int inc[], double chg[],int size)
{
cout<<"\n\n";
chg[0] = inc[0] -1000;
for(int i=1;i<size;i++)
{
chg[i] = inc [i] - inc[i-1];
}
for(int i=0;i<size;i++)
{
if (chg[i] >= 0)
{
cout<<"Income Increase in Year "<<2000+i<<" : "<<chg[i]<<"million"<<endl;
}
else if (chg[i] < 0)
{
cout<<"Income Decrease in Year "<<2000+i<<" : "<<chg[i]*-1<<"million"<<endl;
}
}
}
void CalcChangePercent(int inc[], double chg[], float per[], int size)
{
cout<<"\n\n";
per[0] = (chg[0]*100 / 1000);
for(int i=1;i<size;i++)
{
per[i] = (chg [i]*100 / inc[i-1]);
}
for(int i=0;i<size;i++)
{
if (per[i] >= 0)
{
cout<<"Income Increase in Year "<<2000+i<<": "<<per[i]<<"%"<<endl;
}
else if (per[i] < 0)
{
cout<<"Income Decrease in Year "<<2000+i<<": "<<per[i]*-1<<"%"<<endl;
}
}
}
void IncDecYears(double chg[], int size)
{
int max, min;
cout<<"\n\nIncome Increased in the following years: "<<endl;
for(int i=0;i<size;i++)
{
max=min=0;
if (chg[i] >= 0)
{
if(chg[max] < chg[i])
{
max = i;
}
cout<<2000+i<<", ";
}
}
cout<<"\n\nIncome Decreased in the following years: "<<endl;
for(int i=0;i<size;i++)
{
if (chg[i] < 0)
{
if(chg[min] > chg[i])
{
min = i;
}
cout<<2000+i<<", ";
}
}
MaxIncDecYears(max+2000,min+2000);
}
void MaxIncDecYears(int max,int min)
{
cout<<"\n\nYear with maximium income Increase: "<<max<<endl;
cout<<"Year with maximium income Decrease: "<<min<<endl;
system("pause");
}
assignment cs201-2 ka soluation.
On Sat, Nov 19, 2011 at 12:35 AM, mc110402986 Sumaira <mc110402986@vu.edu.pk> wrote:
this solution is correct or notOn Fri, Nov 18, 2011 at 6:16 PM, mc100204823 Muhammad Yausaf Qamar <mc100204823@vu.edu.pk> wrote:
alone agar to aap nay conceptual study krna hay to.. recomanded books b use kreen.. kuch subjects k liay...
On Tue, Nov 8, 2011 at 6:27 PM, alone <mc100402354@vu.edu.pk> wrote:
ayesha g recomended book main say tayri karny ki koi zaroort nhi aap sirf handouts ko achy say study karin aur unhain samjhain kunki main ny bhi book magwai thi per koi fayda nhi hua--On Tue, Nov 8, 2011 at 11:33 AM, mc110402970 Ayesha Siddiqa <mc110402970@vu.edu.pk> wrote:
book related to Theory of Automata advised by VU to study.
Introduction to Computer Theory by Daniel Cohen
Do you have it (soft copy)?On Mon, Nov 7, 2011 at 8:55 AM, سیٌد عمر شاہ <mubarakanwer@gmail.com> wrote:
Konsi book?--On Mon, Nov 7, 2011 at 5:27 AM, mc110402970 Ayesha Siddiqa <mc110402970@vu.edu.pk> wrote:
Aoa!--
Can anyone help me regarding CS402 Theory of Automata. I need some hadouts and e book of automata.
Please send me if anyone have it.
Regards
Ayesha SiddiqaWe 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
I Hate Spammers Don't Make Me Angry--
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
--
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
Mcs 3rd semesterproject SEO link Engine--
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
--
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
--
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
--
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
Post a Comment