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++代码) 摘要:解题思路:注意事项:参考代码:#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,y; scanf("%d",&x); if(x<1) { y=x; }els…… 题解列表 2017年12月09日 0 点赞 0 评论 541 浏览 评分: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 a,b; scanf("%d",&a); if (a<1) { b =…… 题解列表 2017年11月28日 0 点赞 0 评论 580 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.5 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;class A{ int x, y; public A(int a) { …… 题解列表 2017年11月12日 0 点赞 0 评论 641 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int f(int x){ if(x<1) return x; if(x>=1&&x<10) return 2*x-1; else …… 题解列表 2017年11月10日 0 点赞 0 评论 559 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(void){ float x,y; while(scanf("%f",&x)==1) …… 题解列表 2017年11月05日 0 点赞 0 评论 538 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int x;int y;int main(){ while (scanf("%d", &x)==1)…… 题解列表 2017年11月05日 0 点赞 0 评论 678 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.5 (C语言代码) 摘要:解题思路:用if语句分条写出y的相应等式。注意事项:if语句后用大括号。参考代码:#include "stdio.h"void main(){ float x,y; scanf("%f",&x); i…… 题解列表 2017年10月28日 3 点赞 0 评论 938 浏览 评分:0.0