Computer Science, asked by beast847463, 4 months ago

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 RuwaisnZaid
1

Answer:

r = float and n = float from above output

Similar questions