Computer Science, asked by narendraysn9025, 1 year ago

wrire a program to print the table of 5


Abhiraj1928: Which language?
Abhiraj1928: In which programming language you have to write program in?

Answers

Answered by mn121
0

public class table

{

public static void main(String args[])

{

int i;

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

{

System.out.println(5*i);

}

}

}

Similar questions