Toggle navigation
Courses
Questions
Tags
Users
AC 20161027 期中考 7
1
like
0
dislike
1.6k
views
請設計一程式,從使用者輸入的正整數中找出中位數輸出。使用者輸入的第一個數字N代表接下來會有多少個數字會被輸入,程式會從接下來的N個數中找出中位數輸出。輸出時請注意小數點尾巴的零不要輸出。
sample input:
4
1 2 3 4
sample output
2.5
[Exercise]
Coding (C)
-
asked
Oct 27, 2016
in
2016-1 程式設計(一)AC
by
Shun-Po
(
18k
points)
ID: 15440 -
Available when:
2016-10-27 18:30:00
-
Due to:
2016-10-27 21:00:00
reshown
Oct 27, 2016
by
Shun-Po
|
1.6k
views
comment
Please
log in
or
register
to add a comment.
18
Answers
0
like
0
dislike
Hidden content!
********** **** *
** *** * ****
#include<time.h>
int main(void)
{
* * * * ****** i,j,k,u;
* ** * **** *** ** *** stu[100000];
** * * ** *** * ** *** * ** *** *
*** ** * * ** * ** = i/2;
* * * * ** ** * * * = i/2+1;
**** * * * **** * = (k+u)/2;
* ** ******** - k == 0)
*** * * *** * **** * * ** **** ***
* * * **** * **** ***
* ** ** * * **** * * * ****
*** * ** **** * * 0;
}
answered
Oct 27, 2016
by
蘇瑋朝
(
-8
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include <stdio.h>
#include ***** * * * **
int main()
{
* * * *** * * * * a;
* * ** * ******* ** *** * ** ***
* * * * * ** *** * num[a],i,m=0;
* * * * ** * *** * (i=1; i <= a; i++)
** ** * ***** **** * * **** *
* **** **** * * * ** * * **** ** ** ** * *** ** &num[i]);
** * ** *** **** * * ** (a % 2 == 0)
* * * * * * *** * * ***** ** * * *** * ** *
** * * ** ** *** *** ** **
******* *** * * ** ** * * * * ***
** * * ** * **** * * * * ** ***
* *** ** * ** ** ** * ** * * ** ** m);
}
answered
Oct 27, 2016
by
莊長穎
(
-42
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()
{
*** * * ** * **** i,j,k,n,num[n],m;
*** * * * ***** * ****** * **** * &n);
* * ** *** *** ** ****
* ***** *** * * **** * * * * *
*** **** * ** **** * * * ** &num[n]);
* **** ** **** *** *** * *
** ** * ** ** * ** ** * *** ** **
*** * ** ** ** ******
{
*** ** *** * * * * ** * * ** * **
** * * ** * * **** * ** ** * * *
******** *** * ****** ** * * * ******* *
**** * ** * * *
** ** * ** * ** ** **** ** **
* * * ** * * ** *** *** ",num[i]);
* * * * * * ***** * 0;
}
answered
Oct 27, 2016
by
m8f2617
(
-103
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
** ** * ** *** * *
****** ** * *** *
#include<time.h>
int main()
{
** *** * ** ** * *** ** i,j,k,u;
* * * * ** *** stu[100000];
***** * * * * * **** ** *
* ** *** * * ** = i/2;
* * * ** * * * = i/2+1;
** * *** = (k+u)/2;
*** ****** * * ** *** - k == 0)
* ** * * * * * * **** ** * * ** ** *** *
* ** *** **** * * *
** * **** * **** * * * ** ** ** **
* ** *** * *** *** 0;
}
answered
Oct 27, 2016
by
蘇瑋朝
(
-8
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 ()
{
**** * * * * ***** i ,h, num[h] ;
** **** * * * * * **** *** * &h);
** ** ** ** * * * **
* * ** * * * ** ** * * * ** * ** ** " ,&num[i]);
}
** **** * ** ** * * * == 0){
** ** **** ******* *** * * * ***** ** * ** * ** * * *
*** *** * * *** * *** * *** *
* *** ** ******* *
* *** ** ** *** ****** ** ** * ** * * ** *** * ** *** **
* * * **** * ** * * ** * ***
* **** * **** ** 0 ;
}
answered
Oct 27, 2016
by
shihemi
(
-82
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
** ** *****
*** ** * *** * ** *
int main()
{
int a = 0,b[100] = {0},c = 0,i = 0,j = 0,k = 0,l = 0;
*** ** * ** ** ** *
for(i=0;i<a;i++){
**** * **** *** **
** ** * * * * * *****
* * *** ** ** **
******* * * **
** ***** *** ** = 0;
* ***** ** ** ** * **
{
** * ** * * * * * * ** * **** * *
** ** * ** * * ***** ** * ** *** ** * **** * ***
** ***** * ** ** * ** ** * ***** **** * *** * *** *** ** = b[l];
** * ** ** **** * * * ***** * * ** * * * ** ** = b[i];
*** ** * * * ** * * * ** * * * * * ** * ** ** = k;
** * * **** ** * ** ***** * * ** ** *** *
* * **** *** ** ***
}
if(a%2==0){
i = a/2;
j= a/2+1;
* *** * ** * ** ** ** ***
}else{
i = (a+1)/2;
* * * * ** * ** ***
}
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()
{
** * ** *** ** **** * ** ** a,i;
* * * ** * * ** ****** * *** * * * *** **
** * * * * * * * * * * * * m,j,k;
** ***** ** *** * ****** math[100000];
* ** * * * ** **** * **** * ***
* **** * ** * **** * ***** * ** * ** *** * ** ** ****** * **
* * * * ** ** *** * ** (a%2==0)
{
*** * *** ****** * * ** * * ****** *** * *** * ** *
* ** * ****** ** * ***** * * * ** * * * ** * *** * * *
** *** ** **** ** * * ** ***** * ** ***** ***
* ** * * * * * * ** ** *** * * * *** * * * * * ** ** * ***** *
**** ***** * * * * ** *
** *** * * ** * ** *** * if(a%2!=0)
{ m=math[a/2];
*** **** * **** *** *** * * * * * * * ** *** ** * * * * * * ***
}
}
answered
Oct 27, 2016
by
410425016
(
-124
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
* ** **** *
* ** ** *
* * **** * *
* ** * *
*
* * ** *
* **** * * * ** **
*** * *
(i = ** * ** ** * **** * **** *** ** *** *
* (j = ** * **** z - * *
* (i = j + **** * * * * *** *** = * ****** * = ********** = * **
}
c = z % 2;
d = z / 2;
* = d - *
* * = ***** + *** * * / *** * * * **** ***
* * = ** * ** * ********* **** *
* * 0;
}
answered
Oct 27, 2016
by
410523022
(
-276
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 = 0,b[20000] = {0},c = 0,i = 0,j = 0,k = 0,l = 0;
** *** * * ** **** * * ***
for(i=1;i<a+1;i++){
* ** * **** ** ****** *
*** * **** ** * *** * * ** **** ** *
** * * ** * * * ** *** *
* **** ** * ***** = 1;
* * **** *** *
* *** * * * * *
****** ***** ** **** *
* * **** * * ** *
* ***** * **** *
** ** ** ** ** *** *
** * ****** * *** = 0;
*** * ** ** * * *
i = 0;
* ** * * * *** **
{
* *** *** ** * ** * * * **** *
* * * * *** * ** *** * *** ********** ** ** * * * *
* ** ** ** *** * ** ** * * ** * * * * ** * * *** * = b[l];
** * * *** ** ** ** * * *** * * * * * *** ** * ** * *** ** * ** = b[i];
** * * *** * * * ** * * * ** *** * * ** ** * * * = k;
* ** * *** * * * * * **** * *** * * ** *** ** * *** *** = 0;
*** **** *** **** ** * ** ** *** * ** * * * * * *
*** ** ** * ** * ** ****
}
for(i=0;i<j;i++){
* ** **** * * ** ** *** ** ",b[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!
** ***** ** ** * ***
******** * ***
*** *** ** * *** *
** * ***
* ** ** *** ** *
*** * ** ** * * * *
* *
** (i = * * * * * * *** ** * * *** * * * *
* * (j = * ***** z - ** ***
* (i = j + * * * * * ** * * * * * **** ** = * **** * = * *** ** = ***
}
c = z % 2;
d = z / *
* = d + *
* * = *** + ** / *** **** * ** **
**** * = * * * ** *** ** * **
*** 0;
}
answered
Oct 27, 2016
by
410523022
(
-276
points)
ask related question
comment
Please
log in
or
register
to add a comment.
Page:
1
2
next »
Welcome to Peer-Interaction Programming Learning System (PIPLS) LTLab, National DongHwa University
English
中文
Tiếng Việt
IP:172.70.100.125
©2016-2025
Related questions
0
like
0
dislike
0
answers
AC 20161027 期中考公告
[Resource]
asked
Oct 27, 2016
in
2016-1 程式設計(一)AC
by
Shun-Po
(
18k
points)
ID: 15475 -
Available when:
Unlimited
-
Due to:
Unlimited
|
13
views
0
like
0
dislike
5
answers
AC 20161027 期中考 10
[Exercise]
Coding (C)
-
asked
Oct 27, 2016
in
2016-1 程式設計(一)AC
by
Shun-Po
(
18k
points)
ID: 15447 -
Available when:
2016-10-27 18:30:00
-
Due to:
2016-10-27 21:00:00
|
927
views
1
like
0
dislike
37
answers
AC 20161027 期中考 9
[Exercise]
Coding (C)
-
asked
Oct 27, 2016
in
2016-1 程式設計(一)AC
by
Shun-Po
(
18k
points)
ID: 15446 -
Available when:
2016-10-27 18:30:00
-
Due to:
2016-10-27 21:00:00
|
3.1k
views
1
like
0
dislike
17
answers
AC 20161027 期中考 8
[Exercise]
Coding (C)
-
asked
Oct 27, 2016
in
2016-1 程式設計(一)AC
by
Shun-Po
(
18k
points)
ID: 15442 -
Available when:
2016-10-27 18:30:00
-
Due to:
2016-10-27 21:00:00
|
1.6k
views
0
like
0
dislike
112
answers
AC 20161027 期中考 6
[Exercise]
Coding (C)
-
asked
Oct 27, 2016
in
2016-1 程式設計(一)AC
by
Shun-Po
(
18k
points)
ID: 15426 -
Available when:
2016-10-27 18:30:00
-
Due to:
2016-10-27 21:00:00
|
7.2k
views
12,783
questions
183,442
answers
172,219
comments
4,824
users