[编程入门]成绩评定-题解(C语言代码) 摘要:前面已经写过了一篇,不过那篇是有前提的:输入一个整数在0~100以内。 那在这里呢我又写了一篇没有大前提的程序拓展一下,即需要考虑0~100以外的情况; ##### #### 注意这里有一个函数…… 题解列表 2019年10月13日 0 点赞 0 评论 947 浏览 评分:9.0
[编程入门]成绩评定-题解(C语言代码) 摘要:#include int main() { int s; scanf("%d",&s); if(0…… 题解列表 2019年11月09日 0 点赞 0 评论 371 浏览 评分:0.0
[编程入门]成绩评定-题解(C++代码) 摘要:#include using namespace std; int main() { int x(x=0); cin>>x; if(x>=90&&x…… 题解列表 2019年11月09日 0 点赞 0 评论 805 浏览 评分:9.2
[编程入门]成绩评定-题解(C语言代码),另类解法 摘要:又遇到这道题目,突然冒出来个想法,用整数除法。 ```c #include int main(void){ const char *grade = "EDCBAA"; …… 题解列表 2019年11月22日 0 点赞 2 评论 777 浏览 评分:9.2
[编程入门]成绩评定-题解(Python代码) 摘要:if else语句 ```python x = int(input()) if x=60 and x=70 and x=80 and x…… 题解列表 2019年11月22日 0 点赞 1 评论 1962 浏览 评分:8.6
[编程入门]成绩评定-题解(C语言代码) 摘要:import java.util.Scanner; public class Main { public static void main(String[] args) { Scann…… 题解列表 2019年12月03日 0 点赞 1 评论 2123 浏览 评分:9.9
[编程入门]成绩评定-题解(Java代码) 摘要: import java.util.Scanner; public class Main { public static void ma…… 题解列表 2019年12月03日 0 点赞 0 评论 981 浏览 评分:9.9
[编程入门]成绩评定-题解(C语言代码) 摘要:解题思路: if及if...else语句最多可实现两种情形的判别,而使用if嵌套可判别两种以上的情形。当需要对多种情况进行判别处理时,为结构清晰起见,可使用如下的排版方式: if(表达1) …… 题解列表 2019年12月11日 0 点赞 5 评论 1839 浏览 评分:9.9
[编程入门]成绩评定-题解(C语言代码) 摘要:#include void main() {float n; scanf("%f",&n); if(n>=90&&n=80) printf("B"); else if(n>=70) pr…… 题解列表 2019年12月12日 0 点赞 0 评论 509 浏览 评分:9.0
[编程入门]成绩评定-题解(Java代码) 摘要:`import java.text.DecimalFormat; import java.util.Scanner; public class Main { /** * 这一…… 题解列表 2019年12月12日 0 点赞 0 评论 2258 浏览 评分:9.9