1008: [编程入门]成绩评定 摘要:解题思路:一看就知道是用if语句,一道比较简单的题。注意事项:参考代码:x = int(input())if x<60: print("E")elif x>=60 and x<70: prin…… 题解列表 2023年01月04日 0 点赞 0 评论 134 浏览 评分:0.0
1008: [编程入门]成绩评定 摘要:解题思路:这题直接暴力好吧注意事项:要加=,输出是大写参考代码:#include<bits/stdc++.h>using namespace std;int n;int main(){ cin>>n;…… 题解列表 2022年05月06日 0 点赞 0 评论 164 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2018年05月23日 0 点赞 0 评论 545 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:采用switch语句实现。注意事项:参考代码:#include<stdio.h>int main(){ int num; scanf("%d",&num); switch(num/10) {…… 题解列表 2018年09月18日 0 点赞 0 评论 444 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:注意事项:参考代码: 1 #include<stdio.h> 2 int main() 3 { 4 int n=0; 5 char c=0; 6 prin…… 题解列表 2018年03月25日 0 点赞 0 评论 363 浏览 评分:0.0
[编程入门]成绩评定-题解(C语言代码) 摘要:解题思路:注意事项:参考代码: 方法1,#includeint main(){ int x,y; scanf("%d",&x,&y); if…… 题解列表 2020年11月20日 0 点赞 0 评论 399 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:本题主要是if语句的应用,本题有五次判断,if()里面一次,else if()里面四次。注意事项:注意else后面不能加分号,不然会报错,注意if()和else if()后面不能加”;“。参…… 题解列表 2018年08月01日 0 点赞 0 评论 487 浏览 评分:0.0
[编程入门]成绩评定-题解(C语言代码) 摘要:```c #include int main(void) { int num; //成绩 scanf("%d",&num); if (num >= 90) …… 题解列表 2020年05月06日 0 点赞 0 评论 261 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:根据百位和十位数的比较得出等级注意事项:switch 语句的结构 参考代码:#include"stdio.h" #pragma warning(disable:4996) int …… 题解列表 2017年07月18日 0 点赞 0 评论 830 浏览 评分: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