发布网友 发布时间:2022-09-25 19:20
共2个回答
热心网友 时间:2023-09-20 15:58
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication7
{
class Program
{
static void Main(string[] args)
{
int x = 1;
while (x++ <= 100)
{
if (x % 3 == 0)
{
Console.WriteLine(x);
}
}
Console.ReadLine();
}
}
}
扩展资料:
JavaScript中while循环的语法如下:
while (<条件>) {需执行的代码 };
do {需执行的代码 } while (<条件>);
注意:do...while 循环是 while 循环的变种。该循环程序在初次运行时会首先执行一遍其中的代码,然后当指定的条件为 true 时,它会继续这个循环。
所以可以这么说,do...while 循环为执行至少一遍其中的代码,即使条件为 false,因为其中的代码执行后才会进行条件验证。
热心网友 时间:2023-09-20 15:58
int i = 1;热心网友 时间:2023-09-20 15:58
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication7
{
class Program
{
static void Main(string[] args)
{
int x = 1;
while (x++ <= 100)
{
if (x % 3 == 0)
{
Console.WriteLine(x);
}
}
Console.ReadLine();
}
}
}
扩展资料:
JavaScript中while循环的语法如下:
while (<条件>) {需执行的代码 };
do {需执行的代码 } while (<条件>);
注意:do...while 循环是 while 循环的变种。该循环程序在初次运行时会首先执行一遍其中的代码,然后当指定的条件为 true 时,它会继续这个循环。
所以可以这么说,do...while 循环为执行至少一遍其中的代码,即使条件为 false,因为其中的代码执行后才会进行条件验证。
热心网友 时间:2023-09-20 15:58
int i = 1;