C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:用switch语句实现多分支结构注意事项:参考代码:#include <stdio.h>int main(void){ int b; scanf("%d",&b); …… 题解列表 2018年11月26日 0 点赞 0 评论 743 浏览 评分: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 评论 408 浏览 评分:0.0
junmu1008:C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:了解它的范围,节点。能快速解题哦!注意事项:如果从A开始的话,要注意等号哦参考代码:#include<stdio.h>int main(){ int n; scanf("%d",…… 题解列表 2018年12月21日 3 点赞 0 评论 714 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> #include<string> using namespace std; int mai…… 题解列表 2019年03月31日 0 点赞 0 评论 613 浏览 评分:0.0
[编程入门]成绩评定 (C语言代码) 摘要:解题思路:for 嵌套 if else注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int a[5];int used[5];int pr…… 题解列表 2019年04月20日 0 点赞 0 评论 944 浏览 评分:0.0
[编程入门]成绩评定 (C语言代码) 摘要:使用switch语句参考代码:#include<stdio.h> void y(int x) { char y; if(x<6&&x>=0) x=5; switch(x…… 题解列表 2019年04月22日 0 点赞 0 评论 1117 浏览 评分:0.0
[编程入门]成绩评定-题解(C语言代码) 摘要:#include int main() { int a; scanf("%d",&a); if(a>=90)printf("A"); else if(a>=80)printf("B…… 题解列表 2019年07月23日 0 点赞 0 评论 621 浏览 评分:0.0
[编程入门]成绩评定-题解(Java代码) 摘要:```java import java.util.Scanner; /** * https://www.dotcpp.com/oj/problem1008.html * @author…… 题解列表 2019年07月30日 0 点赞 0 评论 653 浏览 评分:0.0
[编程入门]成绩评定-题解(C语言代码) 摘要:#include int main(){ int a; scanf("%d",&a); switch(a/10){ case 10: …… 题解列表 2019年08月22日 0 点赞 0 评论 763 浏览 评分:0.0
[编程入门]成绩评定-题解(C语言代码) 摘要:1.scanf("输入模式",地址列表);//输入语句及其格式。注:地址列表一定要加取地址符号&,如:&a,&b 2.switch(表达式){ case 常量值1: …… 题解列表 2019年10月13日 0 点赞 0 评论 943 浏览 评分:0.0