成绩评定 from beiqiao (C++) 摘要:#include<iostream> using namespace std; int main() { int grade; cin>>grade; switch(grade/10…… 题解列表 2022年01月23日 0 点赞 0 评论 88 浏览 评分:0.0
switch处理和if~else if的简化处理 摘要:解题思路:本题属于条件判断类型的题目。首先可以想到的是if~else if ,我们既可以把条件设置为(<=xx&&>xx),再思考可以知道当我们设置了一个条件后,下面的条件就已经隐含了它的范围在上述条…… 题解列表 2022年01月21日 0 点赞 0 评论 119 浏览 评分:0.0
[编程入门]成绩评定python 摘要:解题思路:注意事项:参考代码:n = int(input())m = ''if n < 60: m = 'E'elif n < 70: m = 'D…… 题解列表 2022年01月17日 0 点赞 0 评论 281 浏览 评分:6.0
Python字典映射 摘要:score = int(input())number = score//10switcher = { 10: 'A', 9: 'A', 8: '…… 题解列表 2021年12月10日 0 点赞 0 评论 158 浏览 评分:0.0
成绩评定 摘要:解题思路:#include<stdio.h>int main(){ int score; scanf("%d",&score); if(score>=90) { printf("A\n"); } e…… 题解列表 2021年12月04日 0 点赞 0 评论 211 浏览 评分:8.0
题解 1008: [编程入门]成绩评定(C语言) 摘要:参考代码:#include<stdio.h> int main() { int score; /* 90分以及90分以上为A,80-89分为B,70-79分为C,60-69分为D,6…… 题解列表 2021年12月03日 0 点赞 0 评论 363 浏览 评分:0.0
简简单单又是一道c语言 摘要:解题思路:依次比大小注意事项:无参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a); if(a>100 || a<0){ …… 题解列表 2021年11月25日 0 点赞 0 评论 191 浏览 评分:6.0
【sor魔法再现】1008: 成绩评定---史上最最短AC代码,1行!python一题两解,"双一流"惊现江湖:字典推导,一键取值~lambda三元!直接打印 摘要:解题思路:【sor魔法再现】1008: 成绩评定---史上最最短AC代码,1行!python一题两解,"双一流"惊现江湖:字典推导,一键取值~lambda三元!直接打印注意事项:下面两行代码是两个独立…… 题解列表 2021年11月24日 0 点赞 0 评论 439 浏览 评分:7.3
1008成绩评定 摘要:解题思路:#include <stdio.h> //头文件void main() //一个文件的开头{ int a;//赋予与一个值 scanf("%d",&a); if(a<=100) if(a…… 题解列表 2021年11月10日 0 点赞 4 评论 613 浏览 评分:9.9