1008:成绩入门评定 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int n; cin>>n; if(n>=90) { cout<<…… 题解列表 2024年01月14日 0 点赞 0 评论 582 浏览 评分:0.0
编程入门:成绩测定 摘要:解题思路:注意事项:不要忘记“100”这个分数参考代码:#include<stdio.h>int main(){ int grade; scanf("%d",&grade); …… 题解列表 2024年01月10日 0 点赞 0 评论 299 浏览 评分:0.0
循环与数组合理搭配,写起来好看的撒 摘要:参考代码:#include<iostream> using namespace std; int main() { int x; cin >> x; char score[5] …… 题解列表 2024年01月01日 1 点赞 0 评论 592 浏览 评分:9.9
海绵宝宝来学C~题解 1008: [编程入门]成绩评定 摘要:#####解题思路: 看题目就是循环判断了, 那我们可以用基本几个 if-else,switch,等等的循环判断函数去答题 ######if-else代码解法: ```c #includ…… 题解列表 2023年12月28日 1 点赞 0 评论 308 浏览 评分:9.9
经典if-else语句实现 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ const char rank[5] = {'A'…… 题解列表 2023年12月21日 0 点赞 0 评论 221 浏览 评分: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 评论 252 浏览 评分:0.0
利用Switch解决 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int grade;scanf("%d",&grade);grade/=10;switch(grade){case…… 题解列表 2023年10月13日 0 点赞 0 评论 386 浏览 评分:9.9
if解题,正常解法 摘要:解题思路:正常思路注意事项:参考代码:#include <stdio.h>int main (){int a;scanf ("%d",&a);if (100>=a&&a>=90) { …… 题解列表 2023年06月19日 0 点赞 2 评论 225 浏览 评分:6.0
题解 1008: [编程入门]成绩评定 摘要:代码 ```cpp #include using namespace std; int main() { int n; scanf("%d",&n); if(n>=90) { p…… 题解列表 2023年05月19日 0 点赞 0 评论 620 浏览 评分:9.9
[编程入门]成绩评定 摘要:一、解题思路:switch语句C参考代码:#include <stdio.h> int main() { int s; scanf("%d", &s); switch (s / 10…… 题解列表 2023年05月02日 0 点赞 0 评论 164 浏览 评分:0.0