9. Write a Java program to print multiplication table of any number. Static class loop9 { public static void main(String[] args) { int num = 5; for(int i = 1; i <= 10; ++i) { System.out.printf("%d * %d = %d \n", num, i, num * i); } } } Output :-
All computer course for class 9th to 12th with proper practical and theory .........