- 3
Statement
Java statement to check the fifth element of an array X[10]Is divisible by two
1 ответ
0
If(x [5] % 2 == 0){
System.out.println ("true");
} else {
System.out.println ("false");
}
Java statement to check the fifth element of an array X[10]Is divisible by two