public class FP {
public static void main(String args[] {
int i = 10;
int j = 20;
int k =40;
int m = j+k/i;
System.out.println(+m);
} }
What is the value of m in the above program ?
Answers
Answered by
0
Answer:
20+40/10
=20+4
=24
Explanation:
Value of m is 24
Similar questions