[编程入门]成绩评定-题解(C语言代码) 摘要:解题思路:本题主要应用switch语句解决分置与常量之间的问题注意事项:case语句后应该是整数,default表示在switch语句中除过case语句前所包含情况之外的情况,#include<std…… 题解列表 2020年12月20日 0 点赞 1 评论 1596 浏览 评分:9.9
[编程入门]成绩评定-题解(C语言代码) 摘要:解题思路:注意事项:参考代码: 方法1,#includeint main(){ int x,y; scanf("%d",&x,&y); if…… 题解列表 2020年11月20日 0 点赞 0 评论 400 浏览 评分:0.0
[编程入门]成绩评定-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int A,B,C,D,E,x; scanf("%d",&x); if(x>=90&&x<=100) { pri…… 题解列表 2020年11月15日 0 点赞 1 评论 709 浏览 评分:8.9
[编程入门]成绩评定-题解(C语言代码) 摘要:解题思路:简单条件语句的叠加(套娃);注意事项:不要随意加括号(亲身体验)参考代码:#include<stdio.h>int main(){ int n; char a; scanf…… 题解列表 2020年11月12日 0 点赞 0 评论 195 浏览 评分:0.0
[编程入门]成绩评定-题解(C语言代码) 摘要:解题思路:用麻烦的嵌套语句注意事项:参考代码:#include<stdio.h>int main(){ int x; scanf_s("%d", &x); x < 60 ? puts…… 题解列表 2020年11月12日 0 点赞 0 评论 1416 浏览 评分:9.9
[编程入门]成绩评定-题解(C++代码) 摘要:参考代码:#include<iostream> using namespace std; int main() { int a; cin>>a; if(a>89) …… 题解列表 2020年10月17日 0 点赞 0 评论 315 浏览 评分:8.0
[编程入门]成绩评定-题解(C语言代码) 摘要:解题思路:直接if语句注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a); if(a>=90){printf("…… 题解列表 2020年10月09日 0 点赞 0 评论 277 浏览 评分:0.0
[编程入门]成绩评定-题解(Python代码) 摘要:解题思路:用if-elif-else结构注意事项:if,n开头都不要缩进。条件后要:else后也要:Python参考代码:n=int(input()) if n>100 or n<0: e…… 题解列表 2020年06月28日 0 点赞 0 评论 1499 浏览 评分:7.3
[编程入门]成绩评定-题解(C++代码) 摘要:```cpp #include using namespace std; int main() { int input; cin >> input; switch…… 题解列表 2020年06月16日 0 点赞 0 评论 333 浏览 评分:0.0
[编程入门]成绩评定-题解(C++代码) 摘要:通俗易懂,当然还可以用其他的方法做会比我这个简单 代码如下:#include using namespace std; int main() { int a; cin>>…… 题解列表 2020年06月12日 0 点赞 0 评论 332 浏览 评分:7.0