[编程入门]成绩评定 (C语言代码) 摘要:解题思路:for 嵌套 if else注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[5];int used[5];int pr…… 题解列表 2019年04月20日 0 点赞 0 评论 522 浏览 评分:0.0
成绩评定-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d", &a); if (a>=90) { pri…… 题解列表 2021年08月01日 0 点赞 0 评论 196 浏览 评分:0.0
[编程入门]成绩评定-题解(C语言代码) 摘要:```c #include int main(){ int s; char l; scanf("%d",&s); if(s=60&&s=70&&s=80&&s…… 题解列表 2020年02月21日 0 点赞 0 评论 317 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:用判断语句去做就好了注意事项:if下面要跟elseif 要搞清if elseif的关系参考代码:#include<stdio.h>int main (){int n;printf("请输入…… 题解列表 2018年02月11日 0 点赞 0 评论 416 浏览 评分:0.0
[编程入门]成绩评定-题解(Java代码) 摘要:```java import java.util.Scanner; /** * https://www.dotcpp.com/oj/problem1008.html * @author…… 题解列表 2019年07月30日 0 点赞 0 评论 478 浏览 评分:0.0
[编程入门]成绩评定-题解(C语言代码) 摘要:####1. 注意点 这道题目不难,让我们对if-else更加熟练。 ####2. AC代码 ```c #include int main(){ int grade; …… 题解列表 2020年03月05日 0 点赞 0 评论 319 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> main() { int a; scanf("%d",&a); if(a >= 90 && a <= 100) { pr…… 题解列表 2017年07月12日 0 点赞 0 评论 744 浏览 评分:0.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 评论 364 浏览 评分: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
1008: [编程入门]成绩评定 摘要:import java.io.*; /* * if 语句基础题 * */ public class Main { public static BufferedReader i…… 题解列表 2022年05月10日 0 点赞 0 评论 92 浏览 评分:0.0