Toggle navigation
Courses
Questions
Tags
Users
AC practice 3
0
like
0
dislike
3.2k
views
請設計一個程式讓使用者輸入四個整數,程式會將四個數由大排到小輸出。
輸入範例
5566 183 9527 7533967
範例輸出
7533967 9527 5566 183
[Normal]
Coding (C)
-
asked
Oct 11, 2016
in
2016-1 程式設計(一)AC
by
Shun-Po
(
18k
points)
ID: 13025 -
Available when:
Unlimited
-
Due to:
Unlimited
1
flag
|
3.2k
views
comment
0
0
Called for Help
Please
log in
or
register
to add a comment.
43
Answers
0
like
0
dislike
Hidden content!
#include<stdio.h>
int main()
{
int i,j,num[4]={0},tmp;
*** * * ** * * *** ** * ****** * **
*** *** ** * * ** * ** * * **** *** * * * **** &num[i]);
for(j=0;j<3;j++)
*** *** * ** * * * ** * ** ** *** *
*** *** *** * ** ** * * * **** * * ** *** * *** ** **
******* * **** ** ****** * ** * **** ** * ***
* * *** ** *** * * ** ** ** *** ***** ** * ** ** * ** = num[j];
* * * ** * *** * ** *** * * * * **** * ** * ** **** * ** ** * * ***
* * ** *** *** ** * * ** * ** * * * ** * * * *** * * *** *
** *** ** ** * * ** ** * * ** ****
* **** * ** ** * ** **** *
*** ** * * ** ** **** * * * * * * ** * * * * ",num[i]);
* * * * ** *** *** * ***** * *** * ** 0;
}
answered
Jan 14, 2017
by
shihemi
(
-82
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include<stdio.h>
int main()
{
int i,j,num[4]={0},tmp;
* * * ***** * ** ** ***
* * ** ** * **** * ** *** * * &num[i]);
for(j=0;j<3;j++)
* *** **** ***** * * *** **** ** * * * * * **
*** *** * ***** ** * * *** **** * * * ***** * * * ** **
** ** * ** ****** * * * * * * ** * **** * ** **
* * * * *** * * * * * ** ** ****** * * ** **** * * **** * = num[j];
* * * ** * * * * ** **** * * ** * ** *** * ** *** **** ***
* * ** * *** **** **** * * * ** * ** ** ** * * * ** * * ** *
*** ** * ** * * ** * ******* **** **** * ** *
***** ** * **** **** *
** ***** ** ** * ** ** ******** * **** * * ** ",num[i]);
* *** ** ** ** * * ** *** * **** 0;
}
answered
Jan 14, 2017
by
shihemi
(
-82
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
* ** ** *** * *
* ** ** *** ** ** *
int **
{
int a[4];
int i,j,t;
for ( i = 0 ; i < 4 ; i++ )
* * * ***** * * * * ** ** ** * * * * *
for ( j = 0 ; j *** 3 ; j++ )
**** *** ** * *** *** * ( i = j+1 ; i * * 4 ;i++ )
** * *** * **** ** * * *** * ** *** * * ( a[j] * ** a[i] )
** *** * * ** * ** ** ** **** *** *
*** **** * ** ******* * **** **** * * **** * * * * * ********* = a[j];
* **** ** * * **** **** ***** * ** **** ******* ** *** * * * ** **** * * * = a[i];
**** * *** * ** ****** * * * ** * ** * ** * * ** ** * * ** * * = t;
* ** ** * ** * * ** *** * ** * ***
for ( i = 0 ; i * * * 4 ; i++)
*** ** ***** * *
return 0;
}
answered
Dec 10, 2016
by
410523007
(
-157
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include * * ** ***
#include * * *** ** *
int main()
{
*** *** ** int m, n[100];
* * * * * int i, j, temp;
* ** *** * * * * *
* ** * **** {
* * ** * * **** ** ** * ** *** *** ** *
* * **** * }
*** **** * *** * *** *** *
* * * **** {
** ***** ** ** * ** ** * ** ** *** *****
* * * *** ** * {
** * * * * ***** * * * *** ****
*** ** ** * * * * ** * {
* * * * * ** ** * ** ** ** * * * ** ** * **
** * * ** * ** * * * * * ** ** * ** ** * *
* * * * ** **** * *** ** ** * * * * * *
* ** * * * ** * * *** * * ** *** }
* * * ** * * * }
* * ** * }
* * ** * * ** **** * ** **
* {
** * * ** * * ** ***** * *** ** n[i]);
* * * *** }
* * * ** *** return 0;
}
answered
Nov 27, 2016
by
410523012
(
-158
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include * * * **** *
int main()
{
* ** * * * *** * * i = 0, j = 0 , box = 0;
* ****** * * * * = 0;i < 4 ;i ++)
* * *** ****** ** ****** * ** * * * **
***** * ** * ** = 0;j < 4;j ++)
** * *** * ** ** * * *** ** *** = j + 1;i < 4;i ++)
*** * * * * * ** * ***** * * * < * *
* * ****** * * * **** *** ***
* * ** * * ** * ** * ** * * * ***** * ** **** * = * * **
* ** *** *** * * * *** * ****** ** ** *** * = **
** ** * **** *** * * * ** * * ** * ** * * **** = box;
***** ** * * * *** * * * * * * * *
*** * *** ** ** *** = 0;i < 4;i ++)
*** **** * * ** ** * * * * * * * ** *
return 0;
}
answered
Nov 23, 2016
by
Doloa
(
-122
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include <stdio.h>
#include <string.h>
#include <ctype.h>
int main()
{
int a[4]={0},i,j,tmp;
* * *** * ** *
**** * * * ***** *** ** * ** * * *** ** *
}
***** ** ***** *
* *** * *** ** ** * ** ** ** *
* * *** * * * * ** *** *** * * ** ** * * ** ***
** * ** *** *** ******* ** ***** ** * * *** ** * *** ** * * * ** ** * = a[i];
** ***** *** ** * * * ** * * * * *** * * ** ** ** *** * * ** * * * = a[i+1];
** * * ** **** * ** **** *********** * ** ** * **** ** * = tmp;
* * ** * ** ***** ***** * ***** ** ** ** **
*** * * * * **
}
* ** *** ** **** * ** *
*** * * *** * ** ***** *** ** ",a[i]);
**** * ** * * *** * **
return 0;
}
answered
Nov 15, 2016
by
loyfree0706
(
-216
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include <stdio.h>
int main()
{
int a,b,c,d;
* * * * * ** * ** **** ***** ** * * *** **** *
if(a>b && a>c && a>d)
{
* * *** * * * ******* * ** * ** * && b>d)
{
* ** * ** * * *** ** *** * *** ***** * * *
* * * * ** ** * **** **** * * * * ** ** ** ** *** * ********** ** * **** ** %d %d %d",a,b,c,d);
* ** * **** * * * * ****** * **** ** * *** *** * *
**** ** * *** * * **** *** * * **** * * * * *************** * *** ***** ** %d %d %d",a,b,d,c);
* * ** * ** *
** **** ** *** ****** if(c>b && c>d)
** *** * *** ******* * ***
* * * ** * * * ** * * ** ** ** *** * * * * * *** **
**** * ** *** ** * ** ** *** * * * *** ** ** * * * ** * ** * * %d %d %d",a,c,b,d);
* *** * * * * ** * * ** * * * * * * * **
* **** * * * ** *** * **** * **** ** * ** ** *** * * ** ** * * * *** %d %d %d",a,c,d,b);
* ********* ** * * **
* * *** * *** ****** ** *** * *
* * ** ** * * ****
******** ** * * * * *** * * * * * **** *
* * ** ** ** * * * * * * * * * ** * * * **** ** * ** ******** * * ** ** * ** * %d %d %d",a,d,b,c);
**** ** * ** *** * * ** *** ** *** * ** *
** ** * *** * ** ** * * * ** *** *** *** * ** ***** * ** *** %d %d %d",a,d,c,b);
*** ** * **** * ** *
}
else if(b>a && b>c && b>d)
{
*** *** * *** ** * ** * * && a>d)
* ** ** * * *** ******
* * * ** ***** * * *** * *** * *** * * * * ** ** **
** * * ***** * *** * ** ** * ** ** * * ***** **** * * ** * * * ** * *** %d %d %d",b,a,c,d);
* * ** * ** * **** *** * * * * * * ** ** * *
* ** * ******** ** * ** ** ******* *** ** *** ** ** * * * * * ** * ******* %d %d %d",b,a,d,c);
*** ** *** **** ** * **
** * * **** *** * ** * if(c>a && c>d)
* * ** * * *** ** *
**** ** **** * * ** ** ** * * ****** *** * ***
* ** ** *** * ** * * * * * * * * * **** * ** * ** *** %d %d %d",b,c,a,d);
* * * * * * * * * ** ** * * ** ** * * ***** * **
* * * * * ** * ** *** * * ** *** ** *** * ** * *** * * ** ** ** *** %d %d %d",b,c,d,a);
** * * * ***** **
* * * **** * *** ***** if(d>a && d>c)
** * * ** * *
** * * * *** * * * ** **** * * * * * * * * *
*** * * * ** ** ** * ** ** * * * * * ** ** *** * * *** ** **** * * * %d %d %d",b,d,a,c);
* * ** * * *** * *** * *** * ** *** *
**** ** *** * *** ** * * ** * ** * * ** ** * ** * ** * ** * *** %d %d %d",b,d,c,a);
**** **** ****** * ***** **
}
else if(c>a && c>b && c>d)
{
** * ** * ****** **** * ** * * * * && a>d)
* * * * ** *** *** * * *
* * ** * * ********** * ** ** **** * *** ** * *
** * ** * * ** ** * ** * ** *** *** **** * * * * * * ** ** * %d %d %d",c,a,b,d);
*** * * * ** ***** * ****** * * * ** ** ** *
***** * * ** ** * ** *** *** * * * *** ** ** ** * ** ** * ***** ** *** * * %d %d %d",c,a,d,b);
** ** * ** * * * * **
* * * * * * * ** *** *** ** * if(b>a && b>d)
** * ** ** * *** ** **
* ** * * ** *** * **** ***** ** * * * * * * *
** * *** * * **** * * * **** **** * * * * * ** * ** ****** %d %d %d",c,b,a,d);
*** ** * * * * * ** ** ** *** ** ** *
** *** ***** *** * * * * ** **** **** * ***** * **** ** *** %d %d %d",c,b,d,a);
}
* **** * * *** * *** if(d>a && d>b)
****** ** ***** ** * *
** ** ** * ** **** * ** * ** * ** * * **** ****
* ** * ***** *** * * ** * ** * * * ***** ** ** * * ** * ** * *** * %d %d %d",c,d,a,b);
* ** * * * * **** *** ** * * ** **
** ** ** ***** ** *** ** *** **** * ** * * *** * **** * **** * * *** %d %d %d",c,d,b,a);
** * * * **** * * **
}
else if(d>a && d>b && d>c)
{
** * ** * ***** * * * * && a>c)
** ******** *** *
**** * * ** ** ******** ** * ** * ** * * *
*** ** * * ** * * **** *** *** ** * ** ****** *** ** ***** * * ** * * *** %d %d %d",d,a,b,c);
** * * * * ** * *** * ** ** * *
**** ** * * * ****** * ***** * * * *** *** ** ***** ** * ** * * *** ** %d %d %d",d,a,c,b);
** * ** * ** * **
* * ** * * * * * ** * if(b>a && b>c)
* * * * * * *** **
*** *** * *** *** *** *** * * *** ** ** * * *
***** * *** * * *** * ** **** * *** ** * ***** * * ****** * ** * * ** ******** ** %d %d %d",d,b,a,c);
**** * * ** *** * * * ***** * * **** ** * ** *
** *** * * * ** * * * * *** * * * ** ** *** * *** * * * *** ** ** ** *** * %d %d %d",d,b,c,a);
******* * *** *** **
* **** ****** * *** if(c>a && c>b)
* *** * ** ** ***** * *
** ***** *** ******** **** ** ** * *** * ** *** * * *** *** *
** * * ** **** *** ** * ** *** * ** **** * ** * * * **** ** * %d %d %d",d,c,a,b);
**** * ** * * ** *** * * ** * * ** * ** ** **
** * * ** *** * * * * ** ** ** ** * * * ** *** * ** ** ******* * ******* * %d %d %d",d,c,b,a);
* * ********* ** * *
}
return (0);
}
answered
Nov 15, 2016
by
loyfree0706
(
-216
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
** * *** * * *
** ** ****
* * ***
{
* * **
(i = * * ** 4;i ++) * * *** ** * * * * * * * ** *
(j = **
* (i = j + *** * * * * * = **** * = **** * * = ** *
}
* (i = ** ** ** * ;i * * ** * * **** *** *
* 0;
}
answered
Nov 2, 2016
by
410523022
(
-276
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
** * ***** ***
* *** * * * * **
int main()
{
int a[4] = {0},i = 0,b = 0,c = 0;
for(i=0;i<4;i++)
{
** ***** * * * * * **
}
for(i=0;i<4;i++)
{
* *** ** * * * ** * *****
**** * * * ** * **** * * *** * *** * ** * *
***** * * * * *** * * * * * * ****** * * ** * *** = a[b];
** * **** *** * ********* ** ** * ******* * ** * ** * ** ** = a[i];
**** * * * * *** *** * ***** ** **** * * * ** *** ** = c;
** * * * ** *** *** ** *** * * * ** ** ** ****** ** = 0;
*** *** * * ***** *** * ** *** ** * * *** **
** * **** * * * * * ***
}
* ** * ** ***
{
** * * * * * * * * * *** * ** ",a[i]);
}
return 0;
}
answered
Oct 27, 2016
by
SRFX
(
-140
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include<stdio.h>
int main()
{
* * *** ** * ********** num[4], i, j, tmp;
* ** * * *** * **** ** * = 0;i < 4;i ++)
* *** ***** ** *** ***** ***** * * * * ** *** * * ** * * * &num[i]);
* * * * * = 0;j <= 3;j ++)
* * * ** * * ** **** * ** ** * * * ** *
** * * * * ** * ** ** ** * * * * ** ** ** **** ** = j + 1;i < 4;i ++)
** * ** * * *** ** ** * * *** ** * *** *** * ** ** ** * num[j] < num[i])
* * *** ***** * * *** * * *** * ***** * * * * *** ** * * ** *** **
*** ****** * * * **** *** ** ***** ******* * *** ** * * * * *** ** * *** * ** ** * * = num[j];
** ** ** * ** * **** *** * ** * * *** * * ** ** * ** ** * * ** ** * * *** * ** * **** ** = num[i];
* * ** **** ** ***** * * ** ** * * ** ** ** ******* * ***** ** **** * * ** * * = tmp;
** * * ** * * *** * ***** *** * * * * ******* *** * * ** *** * **
* * * * * *** **** ** * = 0;i < 4;i ++)
** **** ** * ******
* * * ***** *** *** * ****** * * * ** ** * *** ** ", num[i]);
* * ** ** * * * **** * ** ****** ** * * * *
*** ** * ** *****
** *** * ** * * * * ** * * 0;
}
answered
Oct 27, 2016
by
松山金城武
(
102
points)
ask related question
comment
Please
log in
or
register
to add a comment.
Page:
1
2
3
4
5
next »
Welcome to Peer-Interaction Programming Learning System (PIPLS) LTLab, National DongHwa University
English
中文
Tiếng Việt
IP:172.70.178.125
©2016-2025
Related questions
0
like
0
dislike
35
answers
AC practice 4
[Normal]
Coding (C)
-
asked
Oct 13, 2016
in
2016-1 程式設計(一)AC
by
Shun-Po
(
18k
points)
ID: 13422 -
Available when:
Unlimited
-
Due to:
Unlimited
|
2.6k
views
0
like
0
dislike
49
answers
AC practice 2
[Normal]
Coding (C)
-
asked
Oct 11, 2016
in
2016-1 程式設計(一)AC
by
Shun-Po
(
18k
points)
ID: 13023 -
Available when:
Unlimited
-
Due to:
Unlimited
|
3.5k
views
0
like
0
dislike
39
answers
AC practice 1
[Normal]
Coding (C)
-
asked
Oct 11, 2016
in
2016-1 程式設計(一)AC
by
Shun-Po
(
18k
points)
ID: 13020 -
Available when:
Unlimited
-
Due to:
Unlimited
|
3.2k
views
0
like
0
dislike
16
answers
AC 20161027 期中考 3
[Exercise]
Coding (C)
-
asked
Oct 27, 2016
in
2016-1 程式設計(一)AC
by
Shun-Po
(
18k
points)
ID: 15396 -
Available when:
2016-10-27 18:30:00
-
Due to:
2016-10-27 21:00:00
|
1.4k
views
12,783
questions
183,442
answers
172,219
comments
4,824
users