[编程入门]成绩评定-题解(C++代码) 摘要:解题思路:用if,else注意事项:else后面不加条件参考代码:#include<iostream>using namespace std;int main(){ int score; …… 题解列表 2021年02月18日 0 点赞 0 评论 405 浏览 评分:6.0
1008: [编程入门]成绩评定(C语言三目运算) 摘要:突发奇想用三目运算符来解这道题 ```c #include int main() { int a; scanf("%d",&a); char b; b …… 题解列表 2021年07月04日 0 点赞 0 评论 300 浏览 评分:6.0
[编程入门]成绩评定-题解(C++代码) 摘要: #include using namespace std; int main() { int n; while(cin>>n) { i…… 题解列表 2020年02月18日 0 点赞 1 评论 1066 浏览 评分:6.0
[编程入门]成绩评定-题解(C++代码) 摘要:解题思路:用if ,多个else if和else注意事项:参考代码:#include<bits/stdc++.h>using namespace std; int main(){ int a; …… 题解列表 2021年01月17日 0 点赞 0 评论 387 浏览 评分:6.0
if解题,正常解法 摘要:解题思路:正常思路注意事项:参考代码:#include <stdio.h>int main (){int a;scanf ("%d",&a);if (100>=a&&a>=90) { …… 题解列表 2023年06月19日 0 点赞 2 评论 77 浏览 评分:6.0
[编程入门]成绩评定 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long n;int main(){ cin>>n; if(n>=…… 题解列表 2022年05月24日 0 点赞 0 评论 142 浏览 评分:6.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:参考代码:#include<stdio.h>int main(){ int score; char lever; scanf("%d",&score); switch(score/10){ case…… 题解列表 2017年07月16日 1 点赞 0 评论 760 浏览 评分:6.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
[编程入门]成绩评定python 摘要:解题思路:注意事项:参考代码:n = int(input())m = ''if n < 60: m = 'E'elif n < 70: m = 'D…… 题解列表 2022年01月17日 0 点赞 0 评论 281 浏览 评分:6.0
[编程入门]成绩评定-题解(C++代码) 摘要:#include using namespace std; int main() { int num; cin >> num; if (num >= 90 && n…… 题解列表 2020年02月24日 0 点赞 1 评论 385 浏览 评分:6.0