wrire a program to print the table of 5
Abhiraj1928:
Which language?
Answers
Answered by
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