Hey, started another semester and got a few programs to do. I kinda forgot a lot of stuff in my off time but should get back in the swing of things in no time.
The assignment that has me stuck I KNOW is super simple, I need to enter the amount of credits a student will take and multiply by 100 to get the total tuition. Just need a little help!
#include (iostream)
usingnamespace std;
int main ();
{
float amount;
int credits = 10, money, total;
cout << "Please enter the amount of credits you will be taking ";
cin >> credits;
morph = credits * 100;
cout << "Your total tuition is ";
cin >> total;
system("pause");
return;
}