[编程入门]成绩评定-题解(C语言代码) 摘要: #include int main() { int n; scanf("%d", &n); if (0 …… 题解列表 2020年01月28日 0 点赞 0 评论 359 浏览 评分:0.0
[编程入门]成绩评定-题解(C语言代码)sky 摘要:```c #include int main(){ // if else int x; scanf("%d",&x); if (x >= 90) { …… 题解列表 2020年05月23日 0 点赞 0 评论 361 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:#include<stdio.h>void main(){int a;printf("请输入a:");scanf("%d",&a);if(a>=90&&a<=100)printf("A");if(a>…… 题解列表 2018年05月23日 0 点赞 0 评论 429 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:把平时最常用的数学思路用入门c表达出来注意事项:不要只判断一项,多判断几项。参考代码:void main(){int a; scanf("%d",&a); if(a>=90) printf(…… 题解列表 2017年11月10日 0 点赞 0 评论 645 浏览 评分:0.0
JAVA解决成绩判定 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args…… 题解列表 2022年10月26日 0 点赞 0 评论 109 浏览 评分:0.0
so easy!!!!!!成绩评定 摘要:解题思路:if比较难写,switch语句简洁点注意事项:break 要加上否则就执行下一句了,输出用putchar;先前我用的是printf一直不对,换上putchar就可以了参考代码:#includ…… 题解列表 2021年07月07日 0 点赞 0 评论 157 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int grade;char level;scanf("%d",&grade);if(grade>=90)leve…… 题解列表 2018年03月06日 0 点赞 0 评论 658 浏览 评分:0.0
1008: [编程入门]成绩评定 摘要:解题思路:一看就知道是用if语句,一道比较简单的题。注意事项:参考代码:x = int(input())if x<60: print("E")elif x>=60 and x<70: prin…… 题解列表 2023年01月04日 0 点赞 0 评论 134 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:本题主要是if语句的应用,本题有五次判断,if()里面一次,else if()里面四次。注意事项:注意else后面不能加分号,不然会报错,注意if()和else if()后面不能加”;“。参…… 题解列表 2018年08月01日 0 点赞 0 评论 487 浏览 评分:0.0
选择结构(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char A,B,C,D,E,c6; int a; scanf("%d",&a); if…… 题解列表 2018年11月06日 0 点赞 0 评论 454 浏览 评分:0.0