题解 1070: 二级C语言-成绩归类

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

筛选

二级C语言-成绩归类

摘要:参考代码:#include <stdio.h>int main(){ int n; int a,b,c; a=b=c=0; scanf("%d",&n); while (n!=0) { if (n>8……

普普通通的解题方法

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