Explain and
Predict the return data type of 'r' and 'n' from the snippet:
int p; float m;
r = p+m;
n = m/3*(Math.pow(4,3));
System.out.println(r);
System.out.println(n);
Answers
Answered by
1
Answer:
r = float and n = float from above output
Similar questions