C语言程序设计教程(第三版)课后习题10.1 (C语言代码) 摘要:解题思路以及注意事项:虽然本题有很多种解法,但小方发现这题用冒泡法更能有逼格,所以建议大家熟练运用这种方法。一般用循环来输出数组里的内容,除了字符串可以不用循环来输出。冒泡法就是将数存在数组里面像冒泡…… 题解列表 2017年06月11日 11 点赞 12 评论 2310 浏览 评分:9.0
C语言程序设计教程(第三版)课后习题10.1 (C语言代码) 摘要:解题思路: 使用数组,输入三个整数,然后通过冒泡法,进行从小到大的有序排列,最后输出数组。注意题目要求空格隔开。代码如下:#include<stdio.h> #define xx 3 int…… 题解列表 2017年06月16日 2 点赞 0 评论 1057 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.1 (C++代码) 摘要:#include <iostream>using namespace std;int main (){ int a,b,c; cin>>a>>b>>c; if(a>b){ int w=a;a=b;b…… 题解列表 2017年06月28日 0 点赞 0 评论 1018 浏览 评分:8.0
C语言程序设计教程(第三版)课后习题10.1 (C语言代码) 摘要:#include<stdio.h> int main() { int a,b,c; int t; scanf("%d%d%d",&a,&b,&c); if(a>b) t…… 题解列表 2017年07月03日 8 点赞 12 评论 1784 浏览 评分:9.5
C语言程序设计教程(第三版)课后习题10.1 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void Sort(int a,in…… 题解列表 2017年07月08日 0 点赞 0 评论 968 浏览 评分:2.0
C语言程序设计教程(第三版)课后习题10.1 (C++代码) 摘要:看看代码就懂了。参考代码:#include <iostream>#include<algorithm>using namespace std;int main(){ int a[3],i; …… 题解列表 2017年07月21日 5 点赞 0 评论 1254 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.1 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[3],i,j,t; for(i=0;i<3;i++) scanf("%d"…… 题解列表 2017年07月25日 0 点赞 0 评论 753 浏览 评分:0.0
点我有惊喜!你懂得! 摘要:解题思路:愉快的心情才能使自己身心投入!每题笑话: 都说女儿找了男朋友,父母会有自己辛辛苦苦种的白菜被猪拱了的伤感。 可我弟弟自从找了女朋友,连家里都不回来住了,天天岳母娘给做好吃的,各种的乐…… 题解列表 2017年08月10日 5 点赞 3 评论 1493 浏览 评分:9.6
C语言程序设计教程(第三版)课后习题10.1 (C语言代码) 摘要:解题思路:最容易找出的就是最小值个最大值,然后再对比找出中间值参考代码:int max, min, a, b, c, t; scanf("%d%d%d", &a, &b, &c); max …… 题解列表 2017年08月10日 0 点赞 0 评论 814 浏览 评分:9.9
C语言程序设计教程(第三版)课后习题10.1 (C语言代码) 摘要:#include<stdio.h> int main(){ int a,b,c; void jiaohuan(int *e,int *f,int *g); scanf("%d %d %d",&a…… 题解列表 2017年08月15日 0 点赞 4 评论 1584 浏览 评分:9.9