1 条题解
-
0
C :
#include "stdio.h" #include "math.h" int main() { int math1, English, math2; //printf("Input math1, English and math2:"); scanf("%d,%d,%d", &math1, &English, &math2); double Finalscore = (math1 * 5 + English * 1.5 + math2 * 3.5) / 10; printf("Final score = %.2f\n", Finalscore); return 0; }
- 1
信息
- ID
- 74
- 时间
- 1000ms
- 内存
- 128MiB
- 难度
- (无)
- 标签
- 递交数
- 0
- 已通过
- 0
- 上传者