8 lines
105 B
C
8 lines
105 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int main()
|
|
{
|
|
printf("Average grade: %1f\n", 93.7);
|
|
return 0;
|
|
}
|