编写题解 1008: [编程入门]成绩评定 摘要:解题思路:题目要求根据输入的整数成绩(0-100),输出对应的成绩等级。成绩等级分为 ‘A’、‘B’、‘C’、‘D’ 和 ‘E’,具体分级标准如下:90分及以上为 ‘A’80-89分为 ‘B’70-7…… 题解列表 2024年12月05日 1 点赞 1 评论 486 浏览 评分:10.0
1008: [编程入门]成绩评定题解 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std; int main(){ int x; cin >> x; char sco…… 题解列表 2024年12月01日 2 点赞 0 评论 351 浏览 评分:9.9
[编程入门]成绩评定(Switch语句) 摘要:解题思路:利用Switch语句解题,输出语句。注意事项:注意Switch语句格式,最后可以使用default,不要忘记break。参考代码:#include<stdio.h>int main(){ i…… 题解列表 2024年09月14日 2 点赞 0 评论 268 浏览 评分:0.0
对于这个问题,直接用暴力算法,直接求解 摘要:参考代码:#include<stdio.h>int main(){ double x; scanf("%lf",&x); if(x>90||x==90){ printf("A"); } if((x>…… 题解列表 2024年08月04日 0 点赞 0 评论 129 浏览 评分:0.0
成绩判定(数组和分支的结合) 摘要:#include <stdio.h>int main(){ int cj; scanf("%d",&cj); int x; x=cj/10-6; char…… 题解列表 2024年03月10日 0 点赞 0 评论 125 浏览 评分:0.0
编程入门:成绩测定 摘要:解题思路:注意事项:不要忘记“100”这个分数参考代码:#include<stdio.h>int main(){ int grade; scanf("%d",&grade); …… 题解列表 2024年01月10日 0 点赞 0 评论 88 浏览 评分:0.0
海绵宝宝来学C~题解 1008: [编程入门]成绩评定 摘要:#####解题思路: 看题目就是循环判断了, 那我们可以用基本几个 if-else,switch,等等的循环判断函数去答题 ######if-else代码解法: ```c #includ…… 题解列表 2023年12月28日 0 点赞 0 评论 72 浏览 评分:9.9
经典if-else语句实现 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ const char rank[5] = {'A'…… 题解列表 2023年12月21日 0 点赞 0 评论 77 浏览 评分:0.0
1008c语言代码 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a; scanf("%d",&a); if(a>=90) printf("A\n"); else if…… 题解列表 2023年11月05日 0 点赞 0 评论 86 浏览 评分:0.0