成绩等级转换Switch语句练习题解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y; while (scanf("%d",&x)!=EOF){ y=x/10;…… 题解列表 2021年11月07日 0 点赞 0 评论 510 浏览 评分:2.0
成绩等级转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int g;while(scanf("%d",&g)!=EOF){if(g<0||g>100){ printf("…… 题解列表 2019年01月08日 0 点赞 0 评论 480 浏览 评分:0.0
成绩等级转换 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <string>#include <iomanip>using namespace std;int main ()…… 题解列表 2018年09月15日 0 点赞 2 评论 506 浏览 评分:0.0
成绩等级转换-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a; while(scanf("%d",&a)!=EOF) { if(…… 题解列表 2020年08月16日 0 点赞 0 评论 315 浏览 评分:0.0
1849: 成绩等级转换 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<bits/stdc++.h> using namespace std; int main() { …… 题解列表 2023年09月27日 0 点赞 0 评论 198 浏览 评分:0.0
成绩等级转换 (C语言代码)switch 条件选择 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int mark; while((scanf("%d",&mark))!=EOF) { switch(mark/…… 题解列表 2018年08月18日 0 点赞 0 评论 1475 浏览 评分:0.0
成绩等级转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; while(scanf("%d",&a)!=EOF) { if(a…… 题解列表 2021年03月29日 0 点赞 0 评论 184 浏览 评分:0.0
1849 keuwya cyuyan 666 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int t; while(scanf("%d",&t)!=EOF) { if(t…… 题解列表 2021年11月04日 0 点赞 0 评论 256 浏览 评分:0.0
成绩等级转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a; while(~scanf("%d", &a)){ switch(a/10){ …… 题解列表 2019年01月15日 0 点赞 0 评论 461 浏览 评分:0.0
成绩等级转换-题解(C++代码) 摘要:```cpp #include using namespace std; int main(){ /**< 90~100为A; 80~89为B; 70~79为C; 60~69为D; …… 题解列表 2020年04月24日 0 点赞 0 评论 337 浏览 评分:0.0