1) Write a program to print n even numbers till?
import javax.sound.midi.SysexMessage;
import java.util.Random;
public class EvenNumberPrinter
{
public static void main(String[] args)
{
Random generator = new Random();
int n = generator.nextInt(20) + 10;
System.out.println("The total amount of numbers (n) = " + n);
System.out.println("The even numbers from 0 to " + n + ":");
for (int i = 0; i < n; i++)
if (i % 2 == 0)
System.out.print(i + " ");
}
}
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Learn more about our help with Assignments:
JavaJSPJSF