Relative prime numbers
Write a program, RelativelyPrime_YI.java to prompt the user for an integer, n. The program displays an n-by-n table such a that there is an * in row i and column j if the gcd of i and j is 1 ( i and j are relatively prime) and a space in that position otherwise.
Hint: use GCD_YI.java to finds the greatest common divisor of two integers
Example output:
>run ca_relativelyprime 2 20 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 * * * * * * * * * * * * * * * * * * * * 2 * * * * * * * * * * 3 * * * * * * * * * * * * * * 4 * * * * * * * * * * 5 * * * * * * * * * * * * * * * * 6 * * * * * * * 7 * * * * * * * * * * * * * * * * * * 8 * * * * * * * * * * 9 * * * * * * * * * * * * * * 10 * * * * * * * * 11 * * * * * * * * * * * * * * * * * * * 12 * * * * * * * 13 * * * * * * * * * * * * * * * * * * * 14 * * * * * * * * * 15 * * * * * * * * * * * 16 * * * * * * * * * * 17 * * * * * * * * * * * * * * * * * * * 18 * * * * * * * 19 * * * * * * * * * * * * * * * * * * * 20 * * * * * * * * > */