If-else
Твърдение If
if(condition){
Statement(s);
}Пример
public class IfStatementExample {
public static void main(String[] args){
int num=70;
if( num < 100 ){
/* This println statement will only execute,
* if the above condition is true
*/
System.out.println("number is less than 100");
}
}
}Пример:
If else в Java
Пример:
if-else-if в Java
Пример:
Last updated

