write a program in java to enter a no. and print its table.
Answers
Answered by
0
Answer:
1.import java.util.Scanner;
2.public class TableExample.
3.public static void main(String args[])
4.Scanner sc = new Scanner(System.in);
5.System.out.print("Enter number: ");
6.//reading a number whose table is to be print.
Answered by
2
Answer:
This is the simple Java program.OK.
Attachments:
Similar questions