1008: [编程入门]成绩评定 摘要:#include<stdio.h> int main() { int i; scanf("%d",&i); if(i>=90){printf("A");} …… 题解列表 2022年05月06日 0 点赞 0 评论 177 浏览 评分:0.0
[编程入门]成绩评定 摘要:解题思路:使用switch语句注意事项:要了解switch语句的特点,当没有遇到break语句之前,将一直执行下去参考代码:import java.util.Scanner;public class …… 题解列表 2022年07月14日 0 点赞 0 评论 177 浏览 评分: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
成绩评定问题 摘要:解题思路:使用if语句锁定成绩区间即可,简洁明了注意事项:参考代码:#include<stdio.h>int main(){ int c; scanf("%d",&c); if(c>…… 题解列表 2022年08月12日 0 点赞 0 评论 94 浏览 评分:0.0
[编程入门]成绩评定-题解(C语言代码)sky 摘要:```c #include int main(){ // if else int x; scanf("%d",&x); if (x >= 90) { …… 题解列表 2020年05月23日 0 点赞 0 评论 361 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:#include<stdio.h>void main(){int a;printf("请输入a:");scanf("%d",&a);if(a>=90&&a<=100)printf("A");if(a>…… 题解列表 2018年05月23日 0 点赞 0 评论 429 浏览 评分:0.0
[编程入门]成绩评定-题解(C语言代码) 摘要: #include int main() { int n; scanf("%d", &n); if (0 …… 题解列表 2020年01月28日 0 点赞 0 评论 359 浏览 评分:0.0
[编程入门]成绩评定-题解(C语言代码) 摘要:解题思路:直接if语句注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a); if(a>=90){printf("…… 题解列表 2020年10月09日 0 点赞 0 评论 277 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:根据百位和十位数的比较得出等级注意事项:switch 语句的结构 参考代码:#include"stdio.h" #pragma warning(disable:4996) int …… 题解列表 2017年07月18日 0 点赞 0 评论 830 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <math.h>int main(){ int a; scanf(…… 题解列表 2018年09月23日 0 点赞 0 评论 524 浏览 评分:0.0