题解 1216: 成绩转换

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

筛选

1216: 成绩转换

摘要:```cpp #include using namespace std; int main() { int n; while(cin>>n) switch(n/……

成绩转换 (C语言代码)

摘要:解题思路:switch用起来挺麻烦的,if代替就行注意事项:参考代码:#include<stdio.h> int main() { int n; while(scanf("%d",&n)!……

NICE!简简单单

摘要:解题思路:注意事项:参考代码:#include<stdio.h>void main(){ int score,grade;while((scanf("%d",&score))!=EOF){ grade……