题解 1987: 考试评级

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

筛选

1987 C语言yyds good

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int x;char c1,c2,c3,c4; c1=&#39;A&#39;,c2=&#39;B&#39;,……

考试评级 Switch 语句

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

成绩等级字母输出c语言

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

简单的考试评级

摘要:解题思路:直接使用简单的分支就好注意事项:参考代码:#include<stdio.h>int main(){    int a;    scanf("%d",&a);    if(a>=80&&a<=……

1987: 考试评级

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; int main() {     int sco……

1987考试评级,无题

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

多语言多解法,简单易懂

摘要:>前言题目虽然简单,但是很有深度,是一个比较经典的入门题目,有多个解法,在此介绍我了解的三种解法:暴力判断法、循规蹈矩法、出其不意法,评论区如果有其他想法也欢迎分享。*……