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

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

筛选

编辑入门 成绩评定】

摘要:参考代码:#include<stdio.h>void main(){ int a; scanf("%d",&a);    if(a>=90)     printf("A\n"); if(a>=8……

编程入门成绩评定

摘要:解题思路:简单的运用if来解决注意事项:仔细一些注意符号,英文是否都参考代码#include<stdio.h>               /*头文件*/void main()            ……

编辑入门 成绩评定

摘要:解题思路:用if语句注意事项:需要搞懂其中的逻辑参考代码:#include <stdio.h>void main(){ int a; scanf("%d",&a); if (a>=90) printf……

成绩等级评定,简单易懂(C++)

摘要:解题思路:switch应用,多分支评定成绩注意事项:基础知识的应用参考代码:#include<stdio.h>int main(){ int x,y; scanf("%d",&x); y=x/10; ……

成绩评定(C语言解)

摘要:解题思路:if-else语句的简单运用注意事项:无参考代码:#includeint main(){    int grade,result;        scanf("%d",&grade);   ……

成绩评定的一种解答方法

摘要:解题思路:开头进行判断数据是否正确注意事项:参考代码:#include<stdio.h>int main(){ int x; scanf("%d",&x); if(x>100 || x<0) { p……

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

摘要:解题思路:选择结构注意事项:划分区间 注意 能否取等参考代码:#include<stdio.h>int main(){    int a;    scanf("%d",&a);    if(a>=90……

[编程入门]成绩评定

摘要:解题思路:菜鸡解法,不如用swich来解。即swich(l/10)注意事项:参考代码:#include<stdio.h> int main() {     int l;     scanf("……