Skip to content

Commit cc6bbc0

Browse files
committed
Set Java doc style of comments
1 parent 8d4b4df commit cc6bbc0

File tree

1 file changed

+50
-50
lines changed

1 file changed

+50
-50
lines changed

UVa/PrimeFactors.java

+50-50
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,54 @@
11
/**
2-
*The most relevant definition for this problem is 2a: An integer g > 1 is said to be prime if and only
3-
*if its only positive divisors are itself and one (otherwise it is said to be composite). For example, the
4-
*number 21 is composite; the number 23 is prime. Note that the decompositon of a positive number g
5-
*into its prime factors, i.e.,
6-
*g = f1 × f2 × · · · × fn
7-
*is unique if we assert that fi > 1 for all i and fi ≤ fj for i < j.
8-
*One interesting class of prime numbers are the so-called Mersenne primes which are of the form
9-
*2
10-
*p − 1. Euler proved that 2
11-
*31 − 1 is prime in 1772 — all without the aid of a computer.
12-
*Input
13-
*The input will consist of a sequence of numbers. Each line of input will contain one number g in the
14-
*range −2
15-
*31 < g < 2
16-
*31, but different of -1 and 1. The end of input will be indicated by an input line
17-
*having a value of zero.
18-
*Output
19-
*For each line of input, your program should print a line of output consisting of the input number and
20-
*its prime factors. For an input number g > 0, g = f1 × f2 × · · · × fn, where each fi
21-
*is a prime number
22-
*greater than unity (with fi ≤ fj for i < j), the format of the output line should be
23-
*g = f1 x f2 x . . . x fn
24-
*When g < 0, if | g |= f1 × f2 × · · · × fn, the format of the output line should be
25-
*g = -1 x f1 x f2 x . . . x fn
26-
*Sample Input
27-
*-190
28-
*-191
29-
*-192
30-
*-193
31-
*-194
32-
*195
33-
*196
34-
*197
35-
*198
36-
*199
37-
*200
38-
*0
39-
*Sample Output
40-
*-190 = -1 x 2 x 5 x 19
41-
*-191 = -1 x 191
42-
*-192 = -1 x 2 x 2 x 2 x 2 x 2 x 2 x 3
43-
*-193 = -1 x 193
44-
*-194 = -1 x 2 x 97
45-
*195 = 3 x 5 x 13
46-
*196 = 2 x 2 x 7 x 7
47-
*197 = 197
48-
*198 = 2 x 3 x 3 x 11
49-
*199 = 199
50-
*200 = 2 x 2 x 2 x 5 x 5
51-
*/
2+
* The most relevant definition for this problem is 2a: An integer g > 1 is said to be prime if and only
3+
* if its only positive divisors are itself and one (otherwise it is said to be composite). For example, the
4+
* number 21 is composite; the number 23 is prime. Note that the decompositon of a positive number g
5+
* into its prime factors, i.e.,
6+
* g = f1 × f2 × · · · × fn
7+
* is unique if we assert that fi > 1 for all i and fi ≤ fj for i < j.
8+
* One interesting class of prime numbers are the so-called Mersenne primes which are of the form
9+
* 2
10+
* p − 1. Euler proved that 2
11+
* 31 − 1 is prime in 1772 — all without the aid of a computer.
12+
* Input
13+
* The input will consist of a sequence of numbers. Each line of input will contain one number g in the
14+
* range −2
15+
* 31 < g < 2
16+
* 31, but different of -1 and 1. The end of input will be indicated by an input line
17+
* having a value of zero.
18+
* Output
19+
* For each line of input, your program should print a line of output consisting of the input number and
20+
* its prime factors. For an input number g > 0, g = f1 × f2 × · · · × fn, where each fi
21+
* is a prime number
22+
* greater than unity (with fi ≤ fj for i < j), the format of the output line should be
23+
* g = f1 x f2 x . . . x fn
24+
* When g < 0, if | g |= f1 × f2 × · · · × fn, the format of the output line should be
25+
* g = -1 x f1 x f2 x . . . x fn
26+
* Sample Input
27+
* -190
28+
* -191
29+
* -192
30+
* -193
31+
* -194
32+
* 195
33+
* 196
34+
* 197
35+
* 198
36+
* 199
37+
* 200
38+
* 0
39+
* Sample Output
40+
* -190 = -1 x 2 x 5 x 19
41+
* -191 = -1 x 191
42+
* -192 = -1 x 2 x 2 x 2 x 2 x 2 x 2 x 3
43+
* -193 = -1 x 193
44+
* -194 = -1 x 2 x 97
45+
* 195 = 3 x 5 x 13
46+
* 196 = 2 x 2 x 7 x 7
47+
* 197 = 197
48+
* 198 = 2 x 3 x 3 x 11
49+
* 199 = 199
50+
* 200 = 2 x 2 x 2 x 5 x 5
51+
*/
5252

5353
//https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=524
5454

0 commit comments

Comments
 (0)