c语言:使用while语句求出1到100以内所有能被3整除或能被7整除的自然数
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,因为其中的代码执行后才会进行条件验证。