#include<iostream.h>
#include <conio.h>
main()
{
double engMarks;
double calMarks;
double compMarks;
double engGPA;
double calGPA;
double compGPA;
double CGPA;
char choice;
char grade;
do
{
cout<<"******************* Assessment System *******************"<<endl<<endl<<endl;
cout<<"\nEnter marks of English : \t";
cin>>engMarks;
cout<<"\n\nEnter marks of Computer : \t";
cin>>compMarks;
cout<<"\n\nEnter marks for Calculus : \t";
cin>>calMarks;
if(engMarks<40)
{
engGPA=0;
}
else
{
engGPA=(engMarks/100)*4;
}
if(calMarks<40)
{
calGPA=0;
}
else
{
calGPA=(calMarks/100)*4;
}
if(compMarks<40)
{
compGPA=0;
}
else
{
compGPA=(compMarks/100)*4;
}
CGPA = (engGPA + calGPA +compGPA)/3;
if (CGPA==4)
{
grade = 'A';
cout<<"\n\n\nGPA";
cout<<"\t\tGrade";
cout<<"\t\tRemarks"<<endl<<endl;
cout<<CGPA;
cout<<"\t\t"<<grade;
cout<<"\t\tExcellent"<<endl;
}
else if (CGPA>3.00 && 3.99>CGPA)
{
cout<<"\n\n\nGPA";
cout<<"\t\tGrade";
cout<<"\t\tRemarks"<<endl<<endl;
cout<<CGPA;
cout<<"\t\tB";
cout<<"\t\tGood"<<endl;
}
else if (CGPA>2.00 && 2.99>CGPA)
{
cout<<"\n\n\nGPA";
cout<<"\t\tGrade";
cout<<"\t\tRemarks"<<endl<<endl;
cout<<CGPA;
cout<<"\t\tC";
cout<<"\t\tSatisfactory"<<endl;;
}
else if (CGPA>1.6 && 1.99>CGPA)
{
cout<<"\n\n\nGPA";
cout<<"\t\tGrade";
cout<<"\t\tRemarks"<<endl<<endl;
cout<<CGPA;
cout<<"\t\tD";
cout<<"\t\tPass"<<endl;;
}
else if(CGPA==0)
{
cout<<"\n\n\nGPA";
cout<<"\t\tGrade";
cout<<"\t\tRemarks"<<endl<<endl;
cout<<CGPA;
cout<<"\t\tF";
cout<<"\t\tFail"<<endl;
}
if(compMarks <40 && engMarks<40 && calMarks<40)
{
cout<<"\n!You have to repeat English Subject"<<endl;
cout<<"\n!You have to repeat Calculus Subject"<<endl;
cout<<"\n!You have to repeat Computer Subject"<<endl;
}
else if(engMarks<40)
{
engGPA=0.0;
cout<<"\n\n\nGPA";
cout<<"\t\tGrade";
cout<<"\t\tRemarks"<<endl<<endl;
cout<<CGPA;
cout<<"\t\tD";
cout<<"\t\tPass"<<endl;
cout<<"\n!You have to repeat English Subject"<<endl;
}
else if(calMarks<40)
{
calGPA=0.0;
cout<<"\n\n\nGPA";
cout<<"\t\tGrade";
cout<<"\t\tRemarks"<<endl<<endl;
cout<<CGPA;
cout<<"\t\tD";
cout<<"\t\tPass"<<endl;
cout<<"\n!You have to repeat Calculus Subject"<<endl;
}
else if(compMarks<40)
{
compGPA=0.0;
cout<<"\n\n\nGPA";
cout<<"\t\tGrade";
cout<<"\t\tRemarks"<<endl<<endl;
cout<<CGPA;
cout<<"\t\tD";
cout<<"\t\tPass"<<endl;
cout<<"\n!You have to repeat Computer Subject"<<endl;
}
cout<<"\nDo you want to calculate another Resul? (y/n):\t";
cin>>choice;
system("cls");
}
while (choice=='y');
return (0);
}
--
--
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
#include <conio.h>
main()
{
double engMarks;
double calMarks;
double compMarks;
double engGPA;
double calGPA;
double compGPA;
double CGPA;
char choice;
char grade;
do
{
cout<<"******************* Assessment System *******************"<<endl<<endl<<endl;
cout<<"\nEnter marks of English : \t";
cin>>engMarks;
cout<<"\n\nEnter marks of Computer : \t";
cin>>compMarks;
cout<<"\n\nEnter marks for Calculus : \t";
cin>>calMarks;
if(engMarks<40)
{
engGPA=0;
}
else
{
engGPA=(engMarks/100)*4;
}
if(calMarks<40)
{
calGPA=0;
}
else
{
calGPA=(calMarks/100)*4;
}
if(compMarks<40)
{
compGPA=0;
}
else
{
compGPA=(compMarks/100)*4;
}
CGPA = (engGPA + calGPA +compGPA)/3;
if (CGPA==4)
{
grade = 'A';
cout<<"\n\n\nGPA";
cout<<"\t\tGrade";
cout<<"\t\tRemarks"<<endl<<endl;
cout<<CGPA;
cout<<"\t\t"<<grade;
cout<<"\t\tExcellent"<<endl;
}
else if (CGPA>3.00 && 3.99>CGPA)
{
cout<<"\n\n\nGPA";
cout<<"\t\tGrade";
cout<<"\t\tRemarks"<<endl<<endl;
cout<<CGPA;
cout<<"\t\tB";
cout<<"\t\tGood"<<endl;
}
else if (CGPA>2.00 && 2.99>CGPA)
{
cout<<"\n\n\nGPA";
cout<<"\t\tGrade";
cout<<"\t\tRemarks"<<endl<<endl;
cout<<CGPA;
cout<<"\t\tC";
cout<<"\t\tSatisfactory"<<endl;;
}
else if (CGPA>1.6 && 1.99>CGPA)
{
cout<<"\n\n\nGPA";
cout<<"\t\tGrade";
cout<<"\t\tRemarks"<<endl<<endl;
cout<<CGPA;
cout<<"\t\tD";
cout<<"\t\tPass"<<endl;;
}
else if(CGPA==0)
{
cout<<"\n\n\nGPA";
cout<<"\t\tGrade";
cout<<"\t\tRemarks"<<endl<<endl;
cout<<CGPA;
cout<<"\t\tF";
cout<<"\t\tFail"<<endl;
}
if(compMarks <40 && engMarks<40 && calMarks<40)
{
cout<<"\n!You have to repeat English Subject"<<endl;
cout<<"\n!You have to repeat Calculus Subject"<<endl;
cout<<"\n!You have to repeat Computer Subject"<<endl;
}
else if(engMarks<40)
{
engGPA=0.0;
cout<<"\n\n\nGPA";
cout<<"\t\tGrade";
cout<<"\t\tRemarks"<<endl<<endl;
cout<<CGPA;
cout<<"\t\tD";
cout<<"\t\tPass"<<endl;
cout<<"\n!You have to repeat English Subject"<<endl;
}
else if(calMarks<40)
{
calGPA=0.0;
cout<<"\n\n\nGPA";
cout<<"\t\tGrade";
cout<<"\t\tRemarks"<<endl<<endl;
cout<<CGPA;
cout<<"\t\tD";
cout<<"\t\tPass"<<endl;
cout<<"\n!You have to repeat Calculus Subject"<<endl;
}
else if(compMarks<40)
{
compGPA=0.0;
cout<<"\n\n\nGPA";
cout<<"\t\tGrade";
cout<<"\t\tRemarks"<<endl<<endl;
cout<<CGPA;
cout<<"\t\tD";
cout<<"\t\tPass"<<endl;
cout<<"\n!You have to repeat Computer Subject"<<endl;
}
cout<<"\nDo you want to calculate another Resul? (y/n):\t";
cin>>choice;
system("cls");
}
while (choice=='y');
return (0);
}
Remember Me In Your Prayers
--
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
Comments
Post a Comment