C# 实例 While 循环

c# 实例

while 循环

<html>
<body>
@{
var i = 0;
while (i < 5)
    {
    i += 1;
    <p>line @i</p>
    }
}

</body>
</html>

相关文章