Computer Science, asked by nayakatishay9528, 1 year ago

write the following if... else statement using the conditional operator if(x==100) a="X is 100" else a="X is not 100"


Anonymous: Can you make the question more clearer plz!!

Answers

Answered by Anonymous
3

if(x==100)

{

        a="X is 100";

}

else

{

         a="X is not 100";

}

Similar questions