经典if-else语句实现 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ const char rank[5] = {'A'…… 题解列表 2023年12月21日 0 点赞 0 评论 77 浏览 评分: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语言描述 else if特性求解) 摘要:解题思路:利用else if特性注意事项:参考代码:#include<stdio.h>int main(){ int grade; scanf("%d",&grade); if…… 题解列表 2018年03月06日 0 点赞 0 评论 684 浏览 评分:0.0
switch语句解决成绩评定 摘要:解题思路: 题目首先提出输入不同的分数输出对应的等级,那么一定会用到选择语句(if/else if也可),那么我们就要分析switch中的语法特性,switch后跟常量,在case中找到与swi…… 题解列表 2023年01月24日 0 点赞 0 评论 102 浏览 评分:0.0
用条件运算符简单写出结果 摘要:解题思路:注意事项:参考代码#include<stdio.h>int main(){ int score; char grade; scanf("%d",&score); grade = score>…… 题解列表 2021年07月22日 0 点赞 0 评论 186 浏览 评分:0.0
C语言if选择问题 摘要:解题思路:以第一个举例假如a它小于9就跳过下面的则会继续向下选择注意事项:参考代码:#include<stdio.h>void main(){ int a; scanf("%d",&a…… 题解列表 2021年11月07日 0 点赞 0 评论 205 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){int a;scanf("%d",&a);if(a>=90){printf("%c",'A');…… 题解列表 2018年10月30日 0 点赞 0 评论 303 浏览 评分:0.0
[编程入门]成绩评定-题解(C语言代码) 摘要: #include int main() { int score; scanf("%d",&score); switch(score/10…… 题解列表 2020年02月27日 0 点赞 0 评论 282 浏览 评分:0.0
1008: [编程入门]成绩评定 摘要:解题思路:选择结构注意事项:划分区间 注意 能否取等参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a); if(a>=90…… 题解列表 2021年09月07日 0 点赞 0 评论 113 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(void){ int a; scanf("%d",&a); while(a>=90&&a<=100) { print…… 题解列表 2018年12月10日 0 点赞 0 评论 244 浏览 评分:0.0