/*
格式:
定义初始化表达式
while (条件表达式)
{
循环体(执行语句)
}
*/
public class WhileDemo
{
public static void main(String[] args)
{
//输出1~10这几个整数
int x = 1;
while (x <= 10)
{
System.out.println("x="+x);
x++;
}
//输出1~20中的奇数的两种方法
int x1 = 1,x2 = 1;
while (x1 <= 20)
{
System.out.println("x1="+x1);
x1++;
x1++;
}
while(x2 <= 20)
{
System.out.println("x2="+x2);
x2+=2;
}
}
}
格式:
定义初始化表达式
while (条件表达式)
{
循环体(执行语句)
}
*/
public class WhileDemo
{
public static void main(String[] args)
{
//输出1~10这几个整数
int x = 1;
while (x <= 10)
{
System.out.println("x="+x);
x++;
}
//输出1~20中的奇数的两种方法
int x1 = 1,x2 = 1;
while (x1 <= 20)
{
System.out.println("x1="+x1);
x1++;
x1++;
}
while(x2 <= 20)
{
System.out.println("x2="+x2);
x2+=2;
}
}
}