7 lines
83 B
Text
7 lines
83 B
Text
var number = 6;
|
|
|
|
if(number % 2 == 0) {
|
|
$print("Even");
|
|
} else {
|
|
$print("Odd");
|
|
}
|