[编程入门]成绩评定-题解(Java代码) 摘要:解题思路:多次利用if...else语句对输入成绩进行判断,并输出等级注意事项:范围0-100,可在首尾两处进行约束即可参考代码:import java.util.Scanner;public cla…… 题解列表 2021年07月14日 0 点赞 0 评论 224 浏览 评分:9.0
用switch语句解决此类排比性问题 摘要:解题思路:运用switch语句解题,不用if-else注意事项:switch(表达式){case 取值1: 执行语句; break;case 取值2: 执行语句; break;……default: 执…… 题解列表 2021年07月22日 0 点赞 1 评论 1043 浏览 评分:9.9
用条件运算符简单写出结果 摘要:解题思路:注意事项:参考代码#include<stdio.h>int main(){ int score; char grade; scanf("%d",&score); grade = score>…… 题解列表 2021年07月22日 0 点赞 0 评论 186 浏览 评分:0.0
成绩评定-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d", &a); if (a>=90) { pri…… 题解列表 2021年08月01日 0 点赞 0 评论 196 浏览 评分:0.0
1008: [编程入门]成绩评定--学习switch语句 摘要:解题思路:switch是“开关”的意思,它也是一种“选择”语句,是多分支选择语句,当嵌套的if比较少时(三个以内),用if编写程序会比较简洁。但是当选择的分支比较多时,嵌套的if语句层数就会很多,导致…… 题解列表 2021年08月09日 0 点赞 0 评论 725 浏览 评分:9.9
[编程入门]数字的处理与判断 摘要:#include<stdio.h>int main(){ int a,i=0,j; int b[5]; scanf("%d",&a); while(a!=0) { …… 题解列表 2021年08月09日 0 点赞 0 评论 139 浏览 评分:0.0
[编程入门]成绩评定 摘要:解题思路:菜鸡解法,不如用swich来解。即swich(l/10)注意事项:参考代码:#include<stdio.h> int main() { int l; scanf("…… 题解列表 2021年08月27日 0 点赞 0 评论 192 浏览 评分:6.0
1008: [编程入门]成绩评定 摘要:解题思路:选择结构注意事项:划分区间 注意 能否取等参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a); if(a>=90…… 题解列表 2021年09月07日 0 点赞 0 评论 113 浏览 评分:0.0
成绩评定的一种解答方法 摘要:解题思路:开头进行判断数据是否正确注意事项:参考代码:#include<stdio.h>int main(){ int x; scanf("%d",&x); if(x>100 || x<0) { p…… 题解列表 2021年09月30日 0 点赞 0 评论 152 浏览 评分:0.0
成绩评定(C语言解) 摘要:解题思路:if-else语句的简单运用注意事项:无参考代码:#includeint main(){ int grade,result; scanf("%d",&grade); …… 题解列表 2021年10月04日 0 点赞 8 评论 2551 浏览 评分:9.0