1. Write a program to print n umbers and break the program when n==10.
1
Expert's answer
2011-08-16T11:55:02-0400
import java.util.Random;
public class BreakWhen10 { public static void main(String[] args) { Random generator = new Random(100); int n = generator.nextInt(20) + 10; System.out.println("The total amount of numbers (n) = " + n); for (int i = 0; i < n; i++) { System.out.print(i + " "); if (i == 10) break; } } }
Comments
Leave a comment