成绩等级转换 (C语言代码)
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a; while(~scanf("%d", &a)){ switch(a/10){ ……
成绩等级转换 (C语言代码)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(void){ int t; while (scanf("%d", &t) == 1) { if (t >= 90 &……
1849: 成绩等级转换
摘要:解题思路:注意事项:参考代码:#include<iostream>
#include<bits/stdc++.h>
using namespace std;
int main()
{
……
成绩等级转换-题解(C语言代码)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a; while(scanf("%d",&a)!=EOF) { if(……
成绩等级转换 (C语言代码)P.S.另一个题解是C++描述
摘要:解题思路:很简单的一道题,只需用if和else if就可以咯。注意事项:例如:表示判断t在90~100,须写为if(t>=90&&t<=100),不能直接写成if(90<=t<=100),系统会自动忽……
成绩等级转换 (C语言代码)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int g;while(scanf("%d",&g)!=EOF){if(g<0||g>100){ printf("……
1849 keuwya cyuyan 666
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int t; while(scanf("%d",&t)!=EOF) { if(t……
成绩等级转换-题解(C++代码)
摘要:```cpp
#include
using namespace std;
int main(){
/**<
90~100为A; 80~89为B; 70~79为C; 60~69为D; ……