I am trying to learn C++, I was given this program to write out. Can anyone write this? I will type this exactly what was given to me:
"Write a program to read a student's school id number, his old GPA(grade point average), and old number of course credits (for example,34573,3.5,45), and then print these with appropriate labels. Finally, read in the course credit and grade for each of four courses; for example, Course1=3, Grade1=3.2, Course2=4, Grade2=3.5, Course3=2, Grade3=4.0, Course4=4, Grade4=3.5. Calculate:
old # of honor points=(old#of course credits)*(old GPA)
new # of honor points=Course1*Grade1+Course2*Grade2+Course3*Grade3+Course4*Grade4
current GPA = #of new honor points / #of new course credits
Print the current GPA with appropriate lables. Then calculate
cummulate GPA = (#of old honor points)+(#of new honor points) / (#of old courses credits)+(#of new course credits)
and print this with a label. "
I hope you guys can help me out on this one. Thanks