如何编写While循环

时间:2008-09-03 19:42:51

标签: language-agnostic conditional

如何编写While循环的语法?

C {1 {1}}

#

VB.Net

int i = 0; 
while (i != 10)
{ 
   Console.WriteLine(i); 
   i++; 
}

PHP

Dim i As Integer = 0
While i <> 10
    Console.WriteLine(i)
    i += 1
End While  

的Python

<?php
while(CONDITION)
{
//Do something here.
}
?>


<?php
//MySQL query stuff here
$result = mysql_query($sql, $link) or die("Opps");
while($row = mysql_fetch_assoc($result))
{
$_SESSION['fName'] = $row['fName'];
$_SESSION['lName'] = $row['lName'];
//...
}
?>

3 个答案:

答案 0 :(得分:5)

在PHP中,while循环将如下所示:

<?php
while(CONDITION)
{
//Do something here.
}
?>

这个真实世界的例子可能看起来像这样

<?php
//MySQL query stuff here
$result = mysql_query($sql, $link) or die("Opps");
while($row = mysql_fetch_assoc($result))
{
$_SESSION['fName'] = $row['fName'];
$_SESSION['lName'] = $row['lName'];
//...
}
?>

答案 1 :(得分:5)

这类问题可能存在,但前提是答案是正确的。 While不是C#中的关键字。 while是。此外,!=之间的空格无效。尝试:

int i=0; 
while (i != 10)
{ 
    Console.WriteLine(i); 
    i++; 
}

我在这里时,Python

i = 0
while i != 10:
    print i
    i += 1

答案 2 :(得分:0)

TCL

set i 0
while {$i != 10} {
    puts $i
    incr i
}

C ++,C,JavaScript,Java和无数其他类C语言都看起来与C#完全相同,除了它们将输出写入控制台的方式,或者可能是您创建变量的方式{{ 1}}。回答那些属于其他问题。