Computer Science, asked by khiljiawais18, 4 months ago

If (n< 17)
M=2*n
else
M=2+n;​

Answers

Answered by tayadesantoshtayade8
1

hope u r good bro /sis wish

Answered by akhileshnegi1710
1

Answer:

if n is less than 17

output will be M=2*n

if n is not less than 17

output will be M=2+n

Explanation:

if n=10

As n<17;

so output will be

M=2*10=20

if n=30

As n is not < 17;

so output will be

M=2+30=32

Similar questions