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

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

筛选

[编程入门]成绩评定

摘要:解题思路:注意事项:参考代码:x=int(input())if x>=0 and x<60:    print("E")elif x>=60 and x<70:    print("D")elif x……

switch语句解决成绩评定

摘要:解题思路:    题目首先提出输入不同的分数输出对应的等级,那么一定会用到选择语句(if/else if也可),那么我们就要分析switch中的语法特性,switch后跟常量,在case中找到与swi……

成绩评定-switch用法

摘要:解题思路:主要是switch用法,仔细看看这道题!!!注意事项:参考代码:#include<stdio.h>int main(){ int score; char grade; scanf("%d",……

成绩评定+switch语句

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

入门编程题成绩评定

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

1008题: 成绩评定

摘要:# 自己写的代码 ```c #include int main() { int n; while(~scanf("%d",&n)){ if(n>=90){ ……

[编程入门]成绩评定

摘要:一、解题思路:switch语句C参考代码:#include <stdio.h> int main() { int s; scanf("%d", &s); switch (s / 10……

if解题,正常解法

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

利用Switch解决

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