A
while( x < 100 ) {
if( x == 1 ) { echo "Hello World!" } else { echo "Bottles" }
x++;
}
B
while( x < 100 ) {
if( x != 1 ) { echo "Bottles" } else { echo "Hello World!"}
x++;
}
Böyle büyük bir döngü olan zaman gerçekten bir fark yaratabilir misiniz?