You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
606 B
27 lines
606 B
#include <stdio.h>
|
|
int main()
|
|
{int s[3];
|
|
float m[3],w[3],t[3],e[3];
|
|
s[0] = 10001;
|
|
m[0] = 85.0;
|
|
w[0] = 99.0;
|
|
e[0] = 77.5;
|
|
s[1] = 10002;
|
|
m[1] = 88.5;
|
|
w[1] = 88.5;
|
|
e[1] = 90.0;
|
|
s[2] = 10003;
|
|
m[2] = 66.0;
|
|
w[2] = 78.5;
|
|
e[2] = 89.5;
|
|
for(int i=0;i<3;i++)
|
|
{
|
|
t[i]=m[i]+w[i]+e[i];
|
|
}
|
|
for(int i=0;i<3;i++)
|
|
{printf("%d %.1f %.1f %.1f %.1f\n",s[i],m[i],w[i],e[i],t[i]);
|
|
}
|
|
return 0;
|
|
}
|
|
|