Computer Science, asked by bhartichavan75, 11 hours ago

rewrite the following using single if if( a> =10) { if(a < 100) System. out.println( "two digit number "); }​

Answers

Answered by xNiGhTmRx
1

Answer:

if(a>=10 && a<100)

{

System. out. print on("Two Digit number");

}

Similar questions