Computer Science, asked by udaybhardwaj851, 10 days ago

Rewrite the following using if-else; g = (p>5000) ? p*5/100 : 2*p/100;​

Answers

Answered by rzmtech384
0

Explanation:

if(p>5000) d = p*5/100; else d = 2*p/100;

Similar questions