多语言多解法,简单易懂 摘要:>前言题目虽然简单,但是很有深度,是一个比较经典的入门题目,有多个解法,在此介绍我了解的三种解法:暴力判断法、循规蹈矩法、出其不意法,评论区如果有其他想法也欢迎分享。*…… 题解列表 2025年04月25日 1 点赞 0 评论 7 浏览 评分:10.0
1987考试评级,无题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (){ int t; while(scanf("%d", &t) != EOF) switch(t/10) { ca…… 题解列表 2024年11月21日 0 点赞 0 评论 123 浏览 评分:0.0
1987: 考试评级 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; int main() { int sco…… 题解列表 2023年10月17日 0 点赞 0 评论 120 浏览 评分:0.0
简单的考试评级 摘要:解题思路:直接使用简单的分支就好注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a); if(a>=80&&a<=…… 题解列表 2022年11月08日 0 点赞 0 评论 145 浏览 评分:9.9
成绩等级字母输出c语言 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int x; scanf("%d",&x); switch(x/10) { case 10: case 9…… 题解列表 2022年10月24日 0 点赞 0 评论 132 浏览 评分:0.0
考试评级 Switch 语句 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y; scanf("%d",&x); y=x/10; switch (y){ case 10: …… 题解列表 2021年11月07日 0 点赞 0 评论 215 浏览 评分:2.0
1987 C语言yyds good 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int x;char c1,c2,c3,c4; c1='A',c2='B',…… 题解列表 2021年11月02日 0 点赞 0 评论 224 浏览 评分:0.0
考试评级-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x; scanf("%d",&x); if(x>=80&&x<=100) …… 题解列表 2020年11月27日 0 点赞 0 评论 594 浏览 评分:9.9
考试评级-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,A,B,C,D; scanf("%d",&x); if(x>=80&&x<=100) prin…… 题解列表 2020年10月05日 0 点赞 0 评论 272 浏览 评分:0.0
考试评级-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(void){ int m; scanf("%d",&m); if(m>=80&&m<=100)printf("A\n"…… 题解列表 2020年08月30日 0 点赞 0 评论 248 浏览 评分:0.0