编辑入门 成绩评定】 摘要:参考代码:#include<stdio.h>void main(){ int a; scanf("%d",&a); if(a>=90) printf("A\n"); if(a>=8…… 题解列表 2021年11月07日 0 点赞 0 评论 131 浏览 评分:0.0
编程入门成绩评定 摘要:解题思路:简单的运用if来解决注意事项:仔细一些注意符号,英文是否都参考代码#include<stdio.h> /*头文件*/void main() …… 题解列表 2021年11月07日 0 点赞 0 评论 521 浏览 评分:8.7
编辑入门 成绩评定 摘要:解题思路:用if语句注意事项:需要搞懂其中的逻辑参考代码:#include <stdio.h>void main(){ int a; scanf("%d",&a); if (a>=90) printf…… 题解列表 2021年11月07日 0 点赞 0 评论 157 浏览 评分:0.0
[编程入门]成绩评定------【c语言】||【Python】 摘要:Python ```python n=int(input()) if n>=90: print('A') elif n>=80: print('B') elif n>=7…… 题解列表 2021年11月06日 0 点赞 0 评论 165 浏览 评分:0.0
成绩等级评定,简单易懂(C++) 摘要:解题思路:switch应用,多分支评定成绩注意事项:基础知识的应用参考代码:#include<stdio.h>int main(){ int x,y; scanf("%d",&x); y=x/10; …… 题解列表 2021年11月02日 0 点赞 0 评论 597 浏览 评分:5.7
成绩评定(C语言解) 摘要:解题思路:if-else语句的简单运用注意事项:无参考代码:#includeint main(){ int grade,result; scanf("%d",&grade); …… 题解列表 2021年10月04日 0 点赞 8 评论 2551 浏览 评分:9.0
成绩评定的一种解答方法 摘要:解题思路:开头进行判断数据是否正确注意事项:参考代码:#include<stdio.h>int main(){ int x; scanf("%d",&x); if(x>100 || x<0) { p…… 题解列表 2021年09月30日 0 点赞 0 评论 152 浏览 评分:0.0
1008: [编程入门]成绩评定 摘要:解题思路:选择结构注意事项:划分区间 注意 能否取等参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a); if(a>=90…… 题解列表 2021年09月07日 0 点赞 0 评论 113 浏览 评分:0.0
[编程入门]成绩评定 摘要:解题思路:菜鸡解法,不如用swich来解。即swich(l/10)注意事项:参考代码:#include<stdio.h> int main() { int l; scanf("…… 题解列表 2021年08月27日 0 点赞 0 评论 192 浏览 评分:6.0
[编程入门]数字的处理与判断 摘要:#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