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
3
if(x==100)
{
a="X is 100";
}
else
{
a="X is not 100";
}
Similar questions