Computer Science, asked by paulmanik246, 18 days ago

Write the output of the following parts of programs int x = 49; int y = 78; int z = Math.min(x,y); int w = z - 50; int t = Math.abs(w); System.out.println(z); System.out.println(t);​

Answers

Answered by mayurgawali3103
0

hi my name is Mayur gawali

Answered by Tan90ismyname
0

Explanation:

So int z = x = 49

int w = 49 - 50 = -1

int t = 1

SOP (z) = 49 ;

SOP (t) = 1

Hope it's helpful :))))

Similar questions