Computer Science, asked by febinabose, 10 months ago

write the java expression for the following​

Attachments:

Answers

Answered by devyanshthe2005
1

Answer:

This can also be written in form of

-1 < x <  51

As their were equal to signs also.

Now in java it will be written in form of

-1 < x && x < 51

Answered by Oreki
2

\textsf{\large Given Expression:}

     0 \: \leq \: x \: \leq \: 50

\textsf{\large Java Expression:}

     \texttt{x &gt;= 0 \&amp;\&amp; x &lt;= 50;}

Similar questions