0
Please see my question in description box.
What is the error the following programing code? int a = 15; int b = 10; if( (a=>b) || (b = 10) ) System.out.println("YES"); else Syestem.out.println("No");
2 ответов
+ 1
FOLLOW ME
You need to write:
if((a>=b)||(b==10))
0
ok