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

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

筛选

成绩评定问题

摘要:解题思路:使用if语句锁定成绩区间即可,简洁明了注意事项:参考代码:#include<stdio.h>int main(){    int c;    scanf("%d",&c);    if(c>……

吾乃沉默是金

摘要:解题思路:注意事项:scanf("%d",&a); if(a==3)  printf("春\n"); if(a>=6)#include<stdio.h>void main(){ int a;  pri……

C语言Visual studio写法成绩评定题解{新手向}

摘要:解题思路:用else if注意事项:因为本人使用的Visual studio2022版本 在VS里 scanf是不允许被直接打出 需要加个_s 答题时删掉_s即可 答案以我VS写出来的为主 若有错误指……

1008c语言代码

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