Computer Science, asked by kartikbhoriya7384, 5 months ago

If (p>=5000) k = p*10/100; else k = p*5/100; in ternary

Answers

Answered by nishantmathur62
6

Answer:

k= (p>=5000)? p*10/100:p*5/100;

Similar questions