编写题解 1008: [编程入门]成绩评定 摘要:解题思路:分支语句注意事项:注意每一个的相对应的范围。参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a); if(a>=90) …… 题解列表 2022年05月20日 0 点赞 0 评论 368 浏览 评分:9.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 评论 913 浏览 评分:8.9
优质题解 C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:原题链接:C语言程序设计教程课后习题5.6解题思路:*switch 一种选择结构的语句,用来代替简单的、拥有多个分枝的 if else 语句,基本格式如下:----------------------…… 题解列表 2018年03月30日 13 点赞 17 评论 14237 浏览 评分:8.8
[编程入门]成绩评定-题解(C语言代码) a > b ? c : d 解决方法 摘要:# **先上代码** ```c #include int main () { char level[] = "ABCDE!"; //字符数组 int a; int i=0; …… 题解列表 2019年08月28日 0 点赞 1 评论 614 浏览 评分:8.8
[编程入门]成绩评定-题解(C语言代码) 摘要:```c #include main() { int a; scanf(" %d",&a); if(a>=90) { …… 题解列表 2019年08月11日 0 点赞 1 评论 1011 浏览 评分:8.7
[编程入门]成绩评定-题解(C++代码) 摘要:```cpp #include using namespace std; int main() { int a; cin>>a; if(a>89) cout…… 题解列表 2020年02月25日 0 点赞 0 评论 809 浏览 评分:8.7
编程入门成绩评定 摘要:解题思路:简单的运用if来解决注意事项:仔细一些注意符号,英文是否都参考代码#include<stdio.h> /*头文件*/void main() …… 题解列表 2021年11月07日 0 点赞 0 评论 580 浏览 评分:8.7
[编程入门]成绩评定-题解(Python代码) 摘要:if else语句 ```python x = int(input()) if x=60 and x=70 and x=80 and x…… 题解列表 2019年11月22日 0 点赞 1 评论 2248 浏览 评分:8.6
[编程入门]成绩评定-题解(C语言描述——简洁二维字符数组解法) 摘要:此题可以用二维字符数组来解决,把等级分为六个部分即可(有一个部分处理特殊分数 100) ```c #include int main() { int a=0; char t…… 题解列表 2020年03月24日 0 点赞 1 评论 1345 浏览 评分:8.4
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:so easy注意事项:参考代码:#include<stdio.h>int main(){ int x;char a; scanf("%d",&x); if(x<60) a…… 题解列表 2017年10月28日 0 点赞 0 评论 847 浏览 评分:8.0