Computer Science, asked by twinkleacharjee37, 11 months ago

(d) What will be the output of the following code:
class que3e
public static void main()
System.out.println("Let's print 5's multiplication table");
int number = 5;
for (int i = 1; i <= 10; i++)
System.out.println(number + "x" + i +"=" + (number * 1));​

Answers

Answered by gauravarduino
0

Explanation:

(d) What will be the output of the following code:

class que3e

public static void main()

System.out.println("Let's print 5's multiplication table");

int number = 5;

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

System.out.println(number + "x" + i +"=" + (number * 1));

Similar questions