Computer Science, asked by rupakxyzgiri, 1 month ago

Write a program in Java to display the table of 15 up to 10 using for loop.​

Answers

Answered by jashan6662
0

Explanation:

ugsgsgsgwuwjvsjssgxvbdhshshshe

Answered by Anonymous
1

Answer:

Java Program to Print Multiplication Table for any Number

public class Multiplication_Table.

Scanner s = new Scanner(System.

System. out. print("Enter number:");

int n=s. nextInt();

for(int i=1; i <= 10; i++)

System. out. println(n+" * "+i+" = "+n*i);

Similar questions