1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
#include <iostream>
using namespace std;
void heading();
void GradeName(string name1, int grade1, int grade2, int grade3, int grade4, int grade5);
void average();
void output();
int main(string name1, int grade1, int grade2, int grade3, int grade4, int grade5) {
GradeName(name1, grade1, grade2, grade3, grade4, grade5);
heading();
return 1;
}
void heading() {
cout << "Welcome to the Grade Averager! \n";
cout << "I am Jimmy and I will be your hostess! \n";
cout << "We are gonna have so much fun! \n\n";
}
void GradeName(string name1, int G1, int G2, int G3, int G4, int G5)
{
cout << "Please enter your name! - " << "\n";
cin >> name1;
cout << "Thank you now could you please enter your grades when prompted? F**KING JUST DO IT!" << "\n\n";
cout << "What is you Math grade?" << "\n";
cin >> G1;
cout << "Im guessing your english grade is terrible so I will just put it in for you which is a 69..HAHAHAHA!! get it? LOL!!" << "\n";
G2 = 69;
cout << "Science grade plox?" << "\n";
cin >> G3;
cout << "What is you language grade...i.e how much of a failure are you at it?!?!?!" << "\n";
cin >> G4;
cout << "What is you band grade? Well it must be a 100 because...well I really don't know...LOL!!!!" << "\n";
cin >> G5;
}
|