题解 1987: 考试评级

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

筛选

考试评级-题解(C++代码)

摘要:水题大仙 来了 考察if ~ else 和switch~case 的基本东西 ```cpp #include using namespace std; int main……

考试评级 (C语言代码)

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

考试评级 (C语言代码)

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

考试评级 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int x;scanf("%d", &x);switch(x/10){case 10:case 9: case 8……