[编程入门]成绩评定-题解(C语言代码) 摘要:解题思路:题挺简单的,大致思路的话主要是switch语句和if语句参考代码:if#include<stdio.h>int main(){int n;scanf("%d",&n);n=n/10;if(n…… 题解列表 2021年02月02日 0 点赞 0 评论 814 浏览 评分:6.0
[编程入门]成绩评定-题解(C++代码) 摘要:#include<iostream> using namespace std; int main() { int score; cin>>score; if(score >= 90)…… 题解列表 2021年02月09日 0 点赞 0 评论 653 浏览 评分:6.0
[编程入门]成绩评定-题解(C++代码) 摘要:解题思路:用if,else注意事项:else后面不加条件参考代码:#include<iostream>using namespace std;int main(){ int score; …… 题解列表 2021年02月18日 0 点赞 0 评论 767 浏览 评分:6.0
1008: [编程入门]成绩评定(C语言三目运算) 摘要:突发奇想用三目运算符来解这道题 ```c #include int main() { int a; scanf("%d",&a); char b; b …… 题解列表 2021年07月04日 0 点赞 0 评论 633 浏览 评分:6.0
[编程入门]成绩评定 摘要:解题思路:菜鸡解法,不如用swich来解。即swich(l/10)注意事项:参考代码:#include<stdio.h> int main() { int l; scanf("…… 题解列表 2021年08月27日 0 点赞 0 评论 460 浏览 评分:6.0
关于老童给我们布置的那些作业 摘要:解题思路:本题利用了C语言中的if语句注意事项:记得在A,B,C,D,E后面都加入一个空格符号会比较好哦参考代码:#include<stdio.h> //预编译…… 题解列表 2021年11月09日 0 点赞 0 评论 565 浏览 评分:6.0
简简单单又是一道c语言 摘要:解题思路:依次比大小注意事项:无参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a); if(a>100 || a<0){ …… 题解列表 2021年11月25日 0 点赞 0 评论 535 浏览 评分:6.0
[编程入门]成绩评定python 摘要:解题思路:注意事项:参考代码:n = int(input())m = ''if n < 60: m = 'E'elif n < 70: m = 'D…… 题解列表 2022年01月17日 0 点赞 0 评论 697 浏览 评分:6.0
c++代码,非常原始 摘要:解题思路:注意事项:参考代码:#includeusing namespace std;int main(){ int n; scanf("%d",&n); if(n>=90) { printf("A…… 题解列表 2022年02月09日 0 点赞 0 评论 861 浏览 评分:6.0
[编程入门]成绩评定 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long n;int main(){ cin>>n; if(n>=…… 题解列表 2022年05月24日 0 点赞 0 评论 495 浏览 评分:6.0