write a program to print the table of 2
Answers
Answered by
2
Explanation:
public class Table
{public static void main (string args [] )
{ for (int i = 1; i<10 ; i ++;)
{ int t = 2 * i ;
system.out.println ("2*i = " + t );
}
}
}
plzz follow me
MARK AS BRAINLIAST.....
Similar questions