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语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y; scanf("%d",&x); if(x>90,x<=100) y=&…… 题解列表 2018年11月02日 0 点赞 0 评论 325 浏览 评分:0.0
选择结构(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char A,B,C,D,E,c6; int a; scanf("%d",&a); if…… 题解列表 2018年11月06日 0 点赞 0 评论 453 浏览 评分: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 评论 637 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:用switch语句实现多分支结构注意事项:参考代码:#include <stdio.h>int main(void){ int b; scanf("%d",&b); …… 题解列表 2018年11月26日 0 点赞 0 评论 311 浏览 评分: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
junmu1008:C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:了解它的范围,节点。能快速解题哦!注意事项:如果从A开始的话,要注意等号哦参考代码:#include<stdio.h>int main(){ int n; scanf("%d",…… 题解列表 2018年12月21日 3 点赞 0 评论 434 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a; char b; scanf("%d",&a); if(a>=90) b='A'…… 题解列表 2018年12月21日 0 点赞 0 评论 323 浏览 评分:6.0
C语言程序设计教程(第三版)课后习题5.6 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> #include<string> using namespace std; int mai…… 题解列表 2019年03月31日 0 点赞 0 评论 313 浏览 评分: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 评论 522 浏览 评分:0.0