for ($index = 0; $index <= 100; $index++) {
if ($index % 10 == 0) {
print("$index ");
}
}
결과는 다음과 같음0 10 20 30 40 50 60 70 80 90 100
The Binary Arithmetic Operators
The for statement
for ($index = 0; $index <= 100; $index++) {
if ($index % 10 == 0) {
print("$index ");
}
}
결과는 다음과 같음
No comments:
Post a Comment