Toggle navigation
Courses
Questions
Tags
Users
AD 20161027 期中考 9
0
like
0
dislike
2.4k
views
請設計一個程式,由使用者輸入一個數,程式會找出其所有因數後由小到大輸出。
sample input:
12
sample output
1 2 3 4 6 12
[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
reshown
Oct 27, 2016
by
Shun-Po
|
2.4k
views
comment
Please
log in
or
register
to add a comment.
33
Answers
0
like
0
dislike
Hidden content!
#include <stdio.h>
#include ******* * * **
int main(void)
{
* * * **** * *** * i, x, a = 0;
* * **** * **** *** ** ** *** ** * *** ** &x);
* **** * * * * * ** * (i = 1; i <= x; i++)
** **** * * * * * ** *** ** ** ** ** **
* * *** * *** * * *** ** ***** * (x % i == 0) {
* ** *** * * ** * ** * * **** * * **** ** ** ***** ** ** **** **** * ** *** ", i);
* ** ** * ** * * * * * * *** * ** *** * * ** * ** ****
* * ** * * * ** *** *** ** * ****** ** * ** *
* ** * ******* * * * **
** * ** * ** * * * ** ** ** * 0;
}
answered
Oct 27, 2016
by
410242043
(
56
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()
{
** ****** * * * * *** * ** num,i;
* * * ** ** ** ** ** * * *** ** &num);
* * * *** * * * ** * * * i<=num;i++)
**** * * * ** * * ****
*** * * *** ** **** **** *** *** **** * % i ==0)
* ***** **** * ****** ** * * ** ** * ***
* *** * * *** * * * ** ** ******* * ** ** * ** * ** * * **** **** ",i);
* *** ** * * * ****** * * **** * * * ** ** ** *
*** **** * **** * * **
* **** * ** * * **** * ** 0;
}
answered
Oct 27, 2016
by
kyle wen
(
-202
points)
ask related question
comment
Please
log in
or
register
to add a comment.
0
like
0
dislike
Hidden content!
#include * ** * * *
#include ** * * ** *
int main()
{
** ** * * * * ** x, y;
** ** * * ** * ** ***** * ** ** * *** *
* * *** * *** * ** *** = 1;y <= x; y ++)
* ** * *** ** ** **** * * *** % y == 0)
* ** ** **** * **** * ** *** * * * *** * * * * * * * *** * * y);
****** *** * * * *** 0;
}
answered
Oct 27, 2016
by
410511226
(
-188
points)
ask related question
comment
Please
log in
or
register
to add a comment.
Page:
« prev
1
2
3
4
Welcome to Peer-Interaction Programming Learning System (PIPLS) LTLab, National DongHwa University
English
中文
Tiếng Việt
IP:172.70.126.42
©2016-2025
Related questions
0
like
0
dislike
5
answers
AD 20161027 期中考 10
[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
|
642
views
0
like
0
dislike
11
answers
AD 20161027 期中考 8
[Exercise]
Coding (C)
-
asked
Oct 27, 2016
in
2016-1 程式設計(一)AD
by
Shun-Po
(
18k
points)
ID: 15441 -
Available when:
2016-10-27 18:30:00
-
Due to:
2016-10-27 21:00:00
|
1.2k
views
0
like
0
dislike
73
answers
AD 20161027 期中考 7
[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
|
4.2k
views
0
like
0
dislike
41
answers
AD 20161027 期中考 6
[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
|
2.9k
views
0
like
0
dislike
28
answers
AD 20161027 期中考 5
[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
|
2.2k
views
12,783
questions
183,442
answers
172,219
comments
4,824
users