成绩评定+switch语句
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int score; scanf("%d",&score); switch(score/10){ ……
成绩评定-switch用法
摘要:解题思路:主要是switch用法,仔细看看这道题!!!注意事项:参考代码:#include<stdio.h>int main(){ int score; char grade; scanf("%d",……
switch语句解决成绩评定
摘要:解题思路: 题目首先提出输入不同的分数输出对应的等级,那么一定会用到选择语句(if/else if也可),那么我们就要分析switch中的语法特性,switch后跟常量,在case中找到与swi……
[编程入门]成绩评定
摘要:解题思路:注意事项:参考代码:x=int(input())if x>=0 and x<60: print("E")elif x>=60 and x<70: print("D")elif x……
1008: [编程入门]成绩评定
摘要:解题思路:一看就知道是用if语句,一道比较简单的题。注意事项:参考代码:x = int(input())if x<60: print("E")elif x>=60 and x<70: prin……
编写题解 1008: [编程入门]成绩评定
摘要:import java.util.Scanner;public class Main { public static void main(String[] args) throws Excep……
java 简单易懂的成绩评定-题解
摘要:参考代码:import java.util.Scanner;public class Main{ public static void main(String[] args){ S……
[编程入门]成绩评定 题解
摘要:解题思路:直接用if语句编写就可以。注意if的括号后不要加;。输入X的前面要加上&。参考代码:#include <stdio.h>int main(){ int x; scanf("%d", &x);……
编写题解 1008: [编程入门]成绩评定
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y; scanf("%d",&x); if(x>=0 && x<=100) ……