“Perl sampai loop” Kode Jawaban

Perl sampai loop

# Basic syntax:
until( condition ) {
   code to run;
}

# Example usage:
$i = 5;
until( $i > 10 ) {
   print "Value of i: $i\n";
   $i += 1;
}
# Note, until loops are kind of the opposite of whiles loop, they loops over 
# 	the code until the condition becomes true
Charles-Alexandre Roy

Perl saat loop

# Basic syntax:
while( condition ) {
   code to run;
}

# Example usage:
my $i = 5;
while( $i < 10 ) {
   print "Value of i: $i\n";
   $i += 1;
}
Charles-Alexandre Roy

Jawaban yang mirip dengan “Perl sampai loop”

Pertanyaan yang mirip dengan “Perl sampai loop”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya