Toggle navigation
Courses
Questions
Tags
Users
AD 20161020 作業 4
0
like
0
dislike
4k
views
請設計一程式,讓使用者輸入十個正整數,程式會將這十個數從小到大輸出。
Sample input:
5 3 1 6 4 8 9 7 2 2
Sample output:
1 2 2 3 4 5 6 7 8 9
[Exercise]
Coding (C)
-
asked
Oct 20, 2016
in
作業
by
Shun-Po
(
18k
points)
ID: 14583 -
Available when:
Unlimited
-
Due to:
Unlimited
|
4k
views
comment
Please
log in
or
register
to add a comment.
54
Answers
0
like
0
dislike
Hidden content!
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
int main(void) {
int i=0,j=0,a[10],sort[10],min=9999;
* * ** **** ** * * ** * ** * * *** **
{
**** *** * * ***** *** * ** * * *** ** * * *** * * **
}
** * * * * * ** ** * * * * ** * * *
{
***** ** ****** * * * ** *** * ****** * * * ** *
* ** ** *** * * * * *** ** * *** * ** *
* **** * ** * ** *** ** *** * * * * * *** ** ** * *** * * **
* * * * ** ** * ** ** * * ** * ** ********** ** ** * * * *** * *
** * * * * * *** ******* ** *** * * * *** *** * ** * *** * * * ** **** * *** *** ***** ** * ** **
** **** *** *** * ** ** *** * ***** * * * * ** * * * * ** ** * ** * *** *
** ** *** * * *** ** * * ** ** * * ** ** * ** *** * **** **
**** * ******* * *** ********* *** ******
** * * ***** * ** ** * *** ** ****** * * ***** *** * * ** * ** **
* * ** * * * * ** * * * * * *** * *** *
** ** ** * * *** ***** * ***** ** * ***** * ** *** ***** ** * ");
* * * * ** *** ** ** ** * * ** * * **** * * ***
}
*** * **** * **** * * EXIT_SUCCESS;
}
answered
Dec 2, 2016
by
410421238
(
-38
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include <stdio.h>
#include <stdlib.h>
int main()
{
**** ** * *** ** i, j, c;
** * ***** ***** ** num[10];
* *** *** ** ** *** = 0;i <= 9;i ++)
*** ** ** ** * * **** * * * * * * &num[i]);
* * * *** * ** * = 0;i <= 9;i ++)
* * **** *** * * * ***** *** * ** = i+1;j <= 9;j++)
** * ******* *** * ** * * *** *** **** ** ** ** * ** > num[j])
* *** ** * ** * **** **** ** * * ** ** ** * ** * * * ** * **** ** ***
*** **** ** * * ***** * * * * * * * ** * *** * * * * * ****** ***** **** = num[i];
* * * *** * * **** * ***** ****** *** ** * ** ** ** ** * * ** * * ******* = num[j];
*** * * *** ** * * ** * * ** * * * ** * *** * **** * * * *** ****** * * *** = c;
****** ******* * * ** * ** ** ***** **** ** *** ** * ** * *
* *** * ***** ** ** = 0;i <= 9;i ++)
*** **** ** ** ** ** * *** ** * ** ** * ", num[i]);
* * * * * * * * 0;
}
answered
Oct 20, 2016
by
410511226
(
-188
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include<stdio.h>
#include<stdlib.h>
int main()
{
* * * ****** * * * ** i,j,tmp,num[10]={0};
*** * * * * *** * * * *** * * *
**** **** * ******** *** * * *** ** ***
* * * ** ****** *** **** ** *
* * ** * * * *** * **** * * ** ***
** ***** ** ** * * * ****** * * * * * ** **
{
** ** * ** * ****** * * * ** * **** * ** ***
***** ** ** *** * *** ** * * * *** ****** ** *
*** * ***** * * ****** *** *** * *
***** * ** * * ** * ** * ** ** * * *
* ** * *** **** ***** ** * *** ** * * ***** ****** **
*** * ** ** ** * * * ** * ** **** ** ** ** * *****
******* * * *** * * * ******* * * ***** *
*** ** *** * * *** * * ***** * ****** ** ** *
* *** * * * * * ** * 0;
}
answered
Oct 20, 2016
by
410525038
(
-64
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include <stdio.h>
#include <stdlib.h>
int main()
{
* * * ** *** ** i, j, tmp;
** **** * *** * * num[10] = {0};
* ** * *** * * * (i = 0; i < 10; i++)
**** ** * * * ** ** * ***** *** * * *** * * &num[i]);
** * * *** ****** * (j = 0; j < 10; j++)
{
* * * ** * ** * * * * ****** ** ** * ** (i = j; i < 10; i++)
** *** * * *** ** ** ** *** * **
* ** ** *** *** *** *** **** * ***** *** ** * ** * * * ** (num[j] > num[i])
******* * ******* * * * * ** ** **** * ** * * *
* * * * ** * * * *** ** * * * * ** ** ** *** * *** ** **** ***** ** * * ** = num[i];
**** * **** * ** *** *** **** * ** ******* ** ** *** * ** * *** * ** *** * * * **** = num[j];
*** ** * ** * ****** * ***** * ***** * ***** ***** ** * * *** * ** *** * ***** * **** ** * *** * **** = tmp;
** * *** * * * *** * ** * * **** * * * * * ** **** ** ** **** * **** **
** ** * * ** * * * **** * ***** ** ******
* * * * * * * ****** ** * ***** * * ******* ", num[j]);
* * **** * *** *******
* * * * *** ** * 0;
}
answered
Oct 20, 2016
by
410314217
(
-214
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include <stdio.h>
#include <stdlib.h>
int main (void)
{
*** *** * * * ** i = 0,
* * * **** * * *** * * * *** * **** * ***** *** = 0,
** * ** ** * * * * * ** * *** *** ** *** = 0,
* * * * * * ** ** * ** * ** * ** * **** **** = {0};
* ** * * **** * ** ** *** *
** * * *** ** * ** *********** ** * * ****** * * *** *
** * ** * * * **** **** ** *
** ********** **** * ** ** * ***
* *** * *** *** *** * * *** **** * ** **** *** * ***
* *** * * *** ***** *** ** ****** *
** ** ** * ** * ** ** * ** *** **** ** * * *** * * = input[i];
** ** ******* * * * * * **** *** **** * * * *** * ** * ** = input[i+1];
* * *** ** * ** * ** * * *** ** * * **** ** ** ** * * *** = tmp;
* ** ** * *** * * ** ** * * **
* **** ** *** * * * * *
*** *** * ** * * ** * * * *** **
*** * * * *** * ** * ** * ** * * *** * *** ",input[i]);
* *** ** * * ** ***** * **
***** ** * ** ** * * ** * ("pause");
* ** ** * ** ** * ** 0;
}
answered
Oct 20, 2016
by
410423016
(
-170
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include<stdio.h>
#include<stdlib.h>
int main()
{
int min=0;
int i=0;
int j=0;
int num[10];
*** * * * *** ** * * * * * ** **
* * ** * ** *** **** ** * **** **** * * *
**** ** **** ****** * * * ** ** * * * * * * * ** * * * * * *** * *** * * ** **** * * ** * ** *** * *
* *** * * * ****** ** * * *** ***** * * *
*** * * ******* * * *** * * ****
{
* ** * * *** **** ** * ** ** *** * * * * * *** ** ** *** ** *
* **** * *** * ** ** ******** * * *** *
**** *** ** *** * * ** ****** * * * * * * ** *** * * * * *
****** * * **** * **** * * * ** ********* **** * ** **** * **** * * * **
* * ** * * ** ** ** * * * ** * * * * ** ** * *** ***** ** **** * ** ***** * ** ***
* * ** * * * *** * ** * * ** * * **** ** ** * *** * ** * ** *** ** * * * ** ** * * * ** * ***
* * ** * ** * * * *** *** * * * * *** ** * *** * * ** * ** * ************ * **** * * * *
** * * * * ***** ** ** *** * ****** *** * * ** * ****
* * **** **** * ** *** *** * * * * * ** *
}
* *** ***** * *** ******** * ** *
******* ** * *** * * ***** * ",num[j]);
** * * **** ** * * * *** * ***** *
*** ** ** * **** ** ** * ** 0;
}
answered
Oct 20, 2016
by
chen
(
-102
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include <stdio.h>
#include <stdlib.h>
int main (void)
{
*** *** * ** * * * ** i = 0,
*** *** ** * ** * * * * * ** ** * * ** * ** = 0,
* **** ** * *** ** *** *** ** ** * * **** = 0,
* * * ***** * * *** *** * ** * *** * * = {0};
* * ******* ******* ******
**** ** *** * * * * *** * * ** * * ***** * * ** * * ****** ** * ** * ***
* ***** **** * *** ** * ** * ***
* **** * ** * **** ******
* *** ***** * ***** * ** ** ** * **** * * ******* **
***** ** * * * * ** * *** ** * * *
** ***** * ** ** * ** * *** * ** * * *** * * = input[i];
** * ** * * ***** *** **** ** * ** * ** ** ** * * = input[i+1];
* * * * * * ** * * * * ** *** * ** *** * ** * = tmp;
*** *** ** ** ** **** *** *** * *
* * * * * * * **** **
*** ******** *** * * ** * * * ** *
** ** *** * *** * * * ** * * * ** ** * * ",input[i]);
* ****** ** ** *** * *
* * *** ****** ** * **** * ("pause");
* ** * * * *** * **** * 0;
}
answered
Oct 20, 2016
by
410423016
(
-170
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include<stdio.h>
#include<stdlib.h>
int main()
{
int min=0;
int i=0;
int j=0;
int num[10];
* *** ** ** *** * * * ** * *** *
** *** * * **** ** * * **** ***** **
* * *** * * ** ** ** *** * * ** * * *** ** ** * ** ** * ** * * * * ***** *** *
** * * * * * * * ** ** * ******** *** * *
** ** *** * * * ****** *
{
**** * * ******* * **** ***** ***** * * **** * * * *
* *** * * *** * ** * * * ***** * * * **** **
* *** ** * * ** **** ** ** * ** * * * ** * ** ** * ** * * *** ** ****
* ** * * * ** * * *** * **** * ** * * * * * ** * ****
* * * ***** ***** ** * * * ** ** * **** * ** * *** ** * **** * ******** ** *** ** * ******** **
* ** * * * * ** * * *** ** * *** *** ***** *** * * * * * * * ** * *** ***** ** ** *** **
** ** * **** ****** * * ** * *** * * ** ** **** * *** **** ** ** *** * * * ***** * * *******
* * ** * * * * *** * * * * * *** ** *** ** *** ** * * ** * **
******* * ** *** ** *** * * *** * **
}
** ** * * * *** ** ** * ** **
* *** * ** *** * * * * * ** ",num[j]);
* ** *** ** * ** *** **** * * * * * * * ** *
* *** * *** * * ** **** 0;
}
answered
Oct 20, 2016
by
爾皓
(
-304
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include <stdio.h>
#include <stdlib.h>
int main()
{
** * ***** ** **** * **** * * *** *
* ***** *** * ** * ** * i,j,tmp,stud[10]={0};
*** * ******** ** * ***** = 0; i < 10; i++)
*** * * ** * ** *** ** * *** * ** * ***** *** ** &stud[i]);
* ** * * * * * * * * **** * * * **
** * ********* * * * ** * *** = 0; j < 9; j++)
** * ** * * ** * *** * ** = j+1; i < 10; i++)
** *** * ** ** * ** ** * ** * * *** * * ** ** *** < stud[i])
** ** **** *** * * * ** ** ********* * ******* * ** ***** *
**** * * *** * ****** **** * * * * ** * ******** ** ** * * * * ** = stud[j];
*** *** *** * * * **** * * * * * ***** * **** * ***** * * * * ******* = stud[i];
* ** *** ** **** * *** * ******** * *** * ** * * * * ** ** *** ** ** * * *** * = tmp;
**** * * **** * * * ** *** * * * * ** * * *** **
* * ** * ** ** * * ** * * ** ** = 0; i < 10; i++)
* * ** * ** * * * * * **** **** * *** ** *** * **** * stud[i]);
*** * ** * **** *** * * * *** ** ***** * ** * * *** *** ***** ** ** *
** ** ******** ** * * * ****
* *** * * * * * ** * *** * **** *
** * *** *** ** *** * * *** 0;
}
answered
Oct 20, 2016
by
610537002
(
-110
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include <stdio.h>
#include <stdlib.h>
int main()
{
** **** * * *** * *** ****** ** *
*** *** ***** * * * ** i,j,tmp,stud[10]={0};
***** ** **** ** * ******* **** = 0; i < 10; i++)
*** * * * ** * * *** **** ***** ** ******* ***** **** * &stud[i]);
***** * *** * * ** *** ** *****
*** * ** ** * ** ****** ** * * = 0; j < 9; j++)
*** * ** ** * ** * * **** ** * = j+1; i < 10; i++)
*** * *** * * * **** ****** *** ** * *** **** *** * ****** **** **** < stud[i])
* **** * * ** ****** * ** ****** ** ** ** **** *** *
*** ***** ** * ** ** * ** * **** ** ** *** * * ** * = stud[j];
* * *** *** **** * ***** * * ** *** * ** * **** * * *** * * * = stud[i];
* * ****** * * ** ****** ** *** ** * * * * ** **** * *** ** * * * ****** = tmp;
* *** ***** ** * * * ** * ** ** ** ** * * * * * ***
** * * ** *** *** * *** ** * * * * * = 0; i < 10; i++)
* * ** **** * * * ** ** *** * **** ** * * * * * ** * stud[i]);
**** ** ***** * * * ** ** * * * * * ** * * ** ** *** ** * **
** * *** * * ** * * ** *
*** * *** ** * * ****** * * * * ** * ** * *** *
* ****** ** * * ** * 0;
}
answered
Oct 20, 2016
by
610537002
(
-110
points)
ask related question
comment
Please
log in
or
register
to add a comment.
Page:
1
2
3
4
...
6
next »
Welcome to Peer-Interaction Programming Learning System (PIPLS) LTLab, National DongHwa University
English
中文
Tiếng Việt
IP:172.70.131.137
©2016-2025
Related questions
0
like
0
dislike
31
answers
AD 20161020 作業 2
[Exercise]
Coding (C)
-
asked
Oct 20, 2016
in
作業
by
Shun-Po
(
18k
points)
ID: 14582 -
Available when:
Unlimited
-
Due to:
Unlimited
|
2.5k
views
0
like
0
dislike
37
answers
AD 20161020 作業 1
[Exercise]
Coding (C)
-
asked
Oct 20, 2016
in
作業
by
Shun-Po
(
18k
points)
ID: 14579 -
Available when:
Unlimited
-
Due to:
Unlimited
|
2.8k
views
0
like
0
dislike
37
answers
AD 20161020 做業 3
[Exercise]
Coding (C)
-
asked
Oct 20, 2016
in
作業
by
Shun-Po
(
18k
points)
ID: 14581 -
Available when:
Unlimited
-
Due to:
Unlimited
|
3.1k
views
0
like
0
dislike
23
answers
AD 20161013 作業 4
[Exercise]
Coding (C)
-
asked
Oct 13, 2016
in
作業
by
Shun-Po
(
18k
points)
ID: 13528 -
Available when:
Unlimited
-
Due to:
Unlimited
|
2.2k
views
0
like
0
dislike
31
answers
AD 20161103 作業2
[Exercise]
Essay (Open question)
-
asked
Nov 3, 2016
in
作業
by
Shun-Po
(
18k
points)
ID: 16958 -
Available when:
Unlimited
-
Due to:
Unlimited
|
2.6k
views
12,783
questions
183,442
answers
172,219
comments
4,824
users