1.

Using ternary operators: if(sale>=25000) dis=5000; else dis=250;

Answer» E>=25000?5000:250;


Discussion

No Comment Found