What will be the output
int i = 15, b = 10;
int a = 1*b;
System.out.println("Area of rectangle is" +
a);
Answers
Answered by
3
Answer:
Area of rectangle is 150
this will be the output of above execution.
Hope it will be helpful
Similar questions