选择结构(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char A,B,C,D,E,c6; int a; scanf("%d",&a); if…… 题解列表 2018年11月06日 0 点赞 0 评论 739 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:看注释;注意事项:看注释;参考代码:int main(){int a;scanf("%d",&a);a=a/10; //判断范围,÷10主要是为后面运算ascii码用;if(a>9) a=…… 题解列表 2018年11月18日 4 点赞 0 评论 1146 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:用switch语句实现多分支结构注意事项:参考代码:#include <stdio.h>int main(void){ int b; scanf("%d",&b); …… 题解列表 2018年11月26日 0 点赞 0 评论 900 浏览 评分: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 评论 463 浏览 评分:0.0
junmu1008:C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:了解它的范围,节点。能快速解题哦!注意事项:如果从A开始的话,要注意等号哦参考代码:#include<stdio.h>int main(){ int n; scanf("%d",…… 题解列表 2018年12月21日 3 点赞 0 评论 818 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> #include<string> using namespace std; int mai…… 题解列表 2019年03月31日 0 点赞 0 评论 739 浏览 评分: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 评论 1080 浏览 评分: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 评论 1333 浏览 评分: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 评论 719 浏览 评分:0.0
[编程入门]成绩评定-题解(Java代码) 摘要:```java import java.util.Scanner; /** * https://www.dotcpp.com/oj/problem1008.html * @author…… 题解列表 2019年07月30日 0 点赞 0 评论 780 浏览 评分:0.0