I'm trying to write a little program that would allow the user to first enter a number from 9 to 18, to generate corresponding random numbers (that represent the radius), then to calculate the surface (circle) of each randomly-generated number, and finally to sort the results in descending order.
So far here's my code:
import java.util.Scanner;
import java.math.*;
public class test {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.println("Enter a number from 9 to 18: ");
int num9a18 = input.nextInt();
if (num9a18 < 9 || num9a18 > 18) {
System.out.println("This number is invalid!");
}
int num;
for (int i = 0; i < num9a18; i++) {
num = randomInt(1, 6);
System.out.print(num + " ");
}
}
public static int randomInt(int small, int big) {
double PI = 3.141592564;
int results = ((int) (Math.random() * (big - small + 1)) + small);
return results*results*PI;
}
}
Can you give me some tips because I'm kind of stuck here.
Your program will have compilation error due to
int
-double
inconsistencyModified your program to fix that, as well as the one that you probably is looking for.
Note: I'm making use of auto-boxing feature supported since Java 1.5
Update: Updated the code to demonstrate reverse() as well
Output:
Enter a number from 9 to 18:
10
................SORTING.................
.......................................... ................REVERSING.................