[编程入门]数字的处理与判断 摘要:#include<stdio.h>int main(){ int a,i=0,j; int b[5]; scanf("%d",&a); while(a!=0) { …… 题解列表 2021年08月09日 0 点赞 0 评论 138 浏览 评分:0.0
[编程入门]成绩评定 (C语言代码) 摘要:解题思路:for 嵌套 if else注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[5];int used[5];int pr…… 题解列表 2019年04月20日 0 点赞 0 评论 522 浏览 评分:0.0
[编程入门]成绩评定-题解(C语言代码) 摘要: #include int main() { int a; scanf("%d",&a); switch(a/10){ case 10: …… 题解列表 2020年01月20日 0 点赞 0 评论 338 浏览 评分:0.0
比较笨的题解(不用switch-case语句) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int score; scanf("%d",&score); if(score>=90) { printf("A…… 题解列表 2022年09月25日 0 点赞 0 评论 144 浏览 评分:0.0
C语言Visual studio写法成绩评定题解{新手向} 摘要:解题思路:用else if注意事项:因为本人使用的Visual studio2022版本 在VS里 scanf是不允许被直接打出 需要加个_s 答题时删掉_s即可 答案以我VS写出来的为主 若有错误指…… 题解列表 2022年04月05日 0 点赞 0 评论 559 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a); switch(a/10)…… 题解列表 2017年07月23日 4 点赞 0 评论 1232 浏览 评分:0.0
[编程入门]成绩评定-题解(C语言代码) 摘要:解题思路:注意事项:参考代码: 方法1,#includeint main(){ int x,y; scanf("%d",&x,&y); if…… 题解列表 2020年11月20日 0 点赞 0 评论 399 浏览 评分:0.0
[编程入门]成绩评定-题解(Java代码) 摘要:```java import java.util.Scanner; /** * https://www.dotcpp.com/oj/problem1008.html * @author…… 题解列表 2019年07月30日 0 点赞 0 评论 478 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <math.h>int main(){ int a; scanf(…… 题解列表 2018年09月23日 0 点赞 0 评论 297 浏览 评分:0.0
[编程入门]成绩评定(Switch语句) 摘要:解题思路:利用Switch语句解题,输出语句。注意事项:注意Switch语句格式,最后可以使用default,不要忘记break。参考代码:#include<stdio.h>int main(){ i…… 题解列表 2024年09月14日 2 点赞 0 评论 268 浏览 评分:0.0