安卓slg吧 关注:42贴子:93
  • 0回复贴,共1

WhileDemo.java

只看楼主收藏回复

/*
格式:
定义初始化表达式
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;
}
}
}


IP属地:重庆来自Android客户端1楼2014-05-25 13:13回复