Write a program DisplayPattern1.java, which accepts int value as arguments and print the Following Output:
Ex: Input: 12
Output:
1 2 3 4
5 6 7 8
9 10 11 12
Ex: Input: 12
Output:
1 2 3 4
5 6 7 8
9 10 11 12
write a Program DisplayNumbersDemo1.java, which accepts Three int values as command line arguments (Start value End value and Increment value) and print the number between the given Numbers.
Ex: Input: 10, 30, 2
Output: 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30
Write a program DisplayNumbers.java, which accepts two int values as command line arguments (Start value and End value) and print the numbers between the given Numbers.