print table of 2 in java using for loop code example
Example: multiplication program java
int i,k;
Scanner sc = new Scanner(System.in);
System.out.println("Enter the Number for the table: ");
int n = sc.nextInt();
for (i=1;i<=10;i++){
k = n * i;
//n + "*" + c + " = " + (n*c))
System.out.println(n + "*"+ i + " = " + k);
}