0 like 0 dislike
1.8k views
請設計一程式,將使用者輸入的數排序並剔除重複的數後輸出。使用者輸入的第一個數字N代表接下來會有多少個數字會被輸入,程式會將接下來的N個數由小到大排好,剔除重複的數後輸出。

sample input:
10
5 3 7 6 4 5 3 7 6 4

sample output

3 4 5 6 7
[Exercise] Coding (C) - asked in 2016-1 程式設計(一)AD by (18k points)
ID: 15441 - Available when: 2016-10-27 18:30:00 - Due to: 2016-10-27 21:00:00

edited by | 1.8k views

11 Answers

0 like 0 dislike
Hidden content!
#include <stdio.h>

#include <stdlib.h>



int main()

{
* * *** ** * ** i, j, c,a;
* * * * ** * * * * num[5];
* ** *** * ***** ******* * ** ** ***** * *
* * **** ** **** * * ** * = 0;i < a;i ++)
* *** *** * *** * *** * ** * * * * &num[i]);
* * ** * * * ** = 0;i < a;i ++)
* ***** **** * *** *** * * * * * * = i;j < a;j++)
*** ** * * ** *** * * * * * * *** ** ****** ** * ** ***** * * > num[j])
** * ******** ** * * * ** * *** * * * *** *** ** * *** * ** * * * **
** *** ** **** ** ** ** * ****** * * ** * ** ***** * * ******* ***** * * *** = num[i];
* ** * ** ** ****** * ** ** * ** ** *** * * ** **** * * * **** * ** *** = num[j];
* * ***** * * ** **** * * ** * * *** ******** * ** ****** ******** * * *** = c;
***** ***** * * *** * * ******** ***** * *** * * * * ***** * *** *


**** * *** ** = 0;i <= 4;i ++)
* * * * * ** ** *****
** ** * ** ** **** * * ** ****** * * * * ", num[i]);



}

 
** * ** *** ****** * * * ** * ****
* **** ******* * 0;

}
answered by (-284 points)
Welcome to Peer-Interaction Programming Learning System (PIPLS) LTLab, National DongHwa University
English 中文 Tiếng Việt
IP:104.23.190.140
©2016-2025

Related questions

0 like 0 dislike
5 answers
[Exercise] Coding (C) - asked Oct 27, 2016 in 2016-1 程式設計(一)AD by Shun-Po (18k points)
ID: 15448 - Available when: 2016-10-27 18:30:00 - Due to: 2016-10-27 21:00:00
| 978 views
0 like 0 dislike
33 answers
[Exercise] Coding (C) - asked Oct 27, 2016 in 2016-1 程式設計(一)AD by Shun-Po (18k points)
ID: 15445 - Available when: 2016-10-27 18:30:00 - Due to: 2016-10-27 21:00:00
| 3.7k views
0 like 0 dislike
73 answers
[Exercise] Coding (C) - asked Oct 27, 2016 in 2016-1 程式設計(一)AD by Shun-Po (18k points)
ID: 15439 - Available when: 2016-10-27 18:30:00 - Due to: 2016-10-27 21:00:00
| 6.5k views
0 like 0 dislike
41 answers
[Exercise] Coding (C) - asked Oct 27, 2016 in 2016-1 程式設計(一)AD by Shun-Po (18k points)
ID: 15427 - Available when: 2016-10-27 18:30:00 - Due to: 2016-10-27 21:00:00
| 4.5k views
0 like 0 dislike
28 answers
[Exercise] Coding (C) - asked Oct 27, 2016 in 2016-1 程式設計(一)AD by Shun-Po (18k points)
ID: 15421 - Available when: 2016-10-27 18:30:00 - Due to: 2016-10-27 21:00:00
| 3.4k views
12,783 questions
183,442 answers
172,219 comments
4,824 users