C语言程序设计教程(第三版)课后习题5.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b; scanf("%d",&a); if (a<1) { b =…… 题解列表 2017年11月28日 0 点赞 0 评论 581 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y; scanf("%d",&x); if(x<1){ printf…… 题解列表 2017年12月04日 1 点赞 0 评论 522 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.5 (C语言代码) 摘要:解题思路:#include<stdio.h>int main(){ int x,y; scanf("%d",&x); if(x<1) { y=x; }els…… 题解列表 2017年12月09日 0 点赞 0 评论 542 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.5 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <iostream>#include <iomanip>using namespace std;int main()…… 题解列表 2017年12月14日 0 点赞 0 评论 671 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int x=0,y=0; scanf("%d",&x); if…… 题解列表 2017年12月14日 13 点赞 3 评论 1384 浏览 评分:3.0
C语言程序设计教程(第三版)课后习题5.5 (C语言代码) 摘要:解题思路:简单的判断题,给出x的值,根据要求进行判断,求出对应y的值注意事项:if else 的使用参考代码:#include<stdio.h> int main() { int a,b; s…… 题解列表 2018年01月28日 0 点赞 0 评论 549 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.5 (C语言代码) 摘要:解题思路:使用判断语句就可以了,注意读题目不能遗漏任何信息注意事项: else if(1<=x&&x<10)要有两个&&表示与的意思,其实在if或者在else后面加一个{}比较好,避免一些问题的出现参…… 题解列表 2018年02月04日 1 点赞 0 评论 536 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x; scanf("%d",&x); if(x<1) { prin…… 题解列表 2018年02月21日 0 点赞 0 评论 702 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.5 (C语言代码) 摘要:解题思路:题目不太难,理清思路就好注意事项:注意x的取值范围参考代码:#include<stdio.h>int main(){ int x,y; scanf("%d",&x); if(x<1) { …… 题解列表 2018年02月24日 0 点赞 0 评论 553 浏览 评分:0.0
WU-C语言程序设计教程(第三版)课后习题5.5 (C语言代码) 摘要:#include<stdio.h> int main() { int x,y; scanf("%d",&x); if(x<1) y=x; else if(x<10) y…… 题解列表 2018年02月24日 6 点赞 2 评论 885 浏览 评分:0.0