成绩等级转换 (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<stdio.h>int main(){ int i,a[4]; for(i=0;i<4;i++) scanf("%d",&a[i]); for(i=0…… 题解列表 2021年02月06日 0 点赞 0 评论 260 浏览 评分:0.0
成绩等级转换 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <string>#include <iomanip>using namespace std;int main ()…… 题解列表 2018年09月15日 0 点赞 2 评论 506 浏览 评分:0.0
NICE!简简单单 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void main(){ int score,grade;while((scanf("%d",&score))!=EOF){ grade…… 题解列表 2021年03月30日 0 点赞 0 评论 161 浏览 评分: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
成绩等级转换 (C语言代码)switch 条件选择 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int mark; while((scanf("%d",&mark))!=EOF) { switch(mark/…… 题解列表 2018年08月18日 0 点赞 0 评论 1475 浏览 评分:0.0
1849: 成绩等级转换 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<bits/stdc++.h> using namespace std; int main() { …… 题解列表 2023年09月27日 0 点赞 0 评论 198 浏览 评分:0.0
成绩等级转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; while(scanf("%d",&a)!=EOF) { if(a…… 题解列表 2021年03月29日 0 点赞 0 评论 184 浏览 评分: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语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(void){ int t; while (scanf("%d", &t) == 1) { if (t >= 90 &…… 题解列表 2019年02月17日 0 点赞 0 评论 445 浏览 评分:0.0