题解 3004: 成绩

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

成绩(C代码)

摘要: #include int main() { int a,b,c;//a为作业成绩, b为小测成绩, c为期末成绩 int grade;//总成绩 ……

题解 3004: 成绩

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a, b, c, d; scanf("%d %d %d", &a, &b, &c); d = a * 0……

ikun崩溃代码

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,c,d; float A,B,C; scanf("%d %d %d",&a,&b,&c); ……

成绩(c语言)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){     int a,b,c,s;     scanf("%d%d%d",&a,&b,&c);     s=a*0……