Create a short program that will generate a random number from 0 to 100 while using Math.random and Math.round command.
public class App {
public static void main(String[] args) {
int number = Math.round((int) (Math.random() * 100));
System.out.println(number);
}
}
Comments
Leave a comment