C language programming [plain]
/* Start the comments in the program header (to avoid any problems encountered during the submission of blog posts, the slash used to indicate that the comments have been deleted)
* Copyright and version Declaration of the program
* All rights reserved.
* File name: txt. c
* Author: liuyongshui
* Question: Enter the scores of three students in three courses to calculate the total score and average score of each student.
* Completion date: January 1, April 8, 2013
* Version No.: V1.0
*/
# Include <stdio. h>
Int main ()
{
Int n = 0;
Float num1, num2, num3;
Float sum = 0;
Float aver = 0;
While (n ++ <3) // loop 3 times
{
Printf ("Enter the three scores of % d students:", n );
Scanf ("% f", & num1, & num2, & num3 );
Sum = num1 + num2 + num3;
Aver = sum/3;
Printf ("total score % f of the three students, average score % f: \ n", sum, aver );
}
Return 0;
}
/* Start the comments in the program header (to avoid any problems encountered during the submission of blog posts, the slash used to indicate that the comments have been deleted)
* Copyright and version Declaration of the program
* All rights reserved.
* File name: txt. c
* Author: liuyongshui
* Question: Enter the scores of three students in three courses to calculate the total score and average score of each student.
* Completion date: January 1, April 8, 2013
* Version No.: V1.0
*/
# Include <stdio. h>
Int main ()
{
Int n = 0;
Float num1, num2, num3;
Float sum = 0;
Float aver = 0;
While (n ++ <3) // loop 3 times
{
Printf ("Enter the three scores of % d students:", n );
Scanf ("% f", & num1, & num2, & num3 );
Sum = num1 + num2 + num3;
Aver = sum/3;
Printf ("total score % f of the three students, average score % f: \ n", sum, aver );
}
Return 0;
}