题解 1008: [编程入门]成绩评定

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

筛选

1008c语言代码

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

经典if-else语句实现

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    const char rank[5] = {&#39;A&#39……

编程入门:成绩测定

摘要:解题思路:注意事项:不要忘记“100”这个分数参考代码:#include<stdio.h>int main(){     int grade;     scanf("%d",&grade);     ……

1008:成绩入门评定

摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int n; cin>>n; if(n>=90) { cout<<……

利用选择函数求解成绩评定

摘要:解题思路:可分情况讨论输入的成绩落在哪个区间,并输出对应区间的字符注意事项:输出的字符需要自己写出来,此种方法局限性较大,只针对本题可求解参考代码:#include<iostream>using na……

第二种方法解决此题

摘要:解题思路:第一种采用if                  else if                 else注意事项:q嵌套过程的逻辑判断参考代码