天天开心^_^

循环语句

16 08月
作者:popsky|分类:JAVA学习

一:while 循环语句

int x =1;

int sum = 0;

while (x <=10){

sum = sum +x;

x++;

}



二:do...while 循环语句

Scanner sc = new Scanner(System.in);

String password;

do {

System.out.println("请输入6位数字密码:");

password = sc.nextLine();

} while (!"654321".equals(password)); //为假跳出循环,为真继续循环

System.out.println("登录成功!");

sc.close;



三:for 循环语句

1:标准例子

int sum = 0;

for (int i = 1; i <=100;i++){

sum+=i;

}


2:foreach语句(for (循环变量x : 遍历对象obj))

int arr[] = {7,10,1};

System.out.println("一维数组中的元素分别为:");

for (int x : arr){  //int x引用的变量,arr指定要遍历的数组,最后将x输出

System.out.println(x);

}


break; //为跳出循环,但只跳出一层循环

continue;//continue 语句是针对break语句的补充。continue不是立即跳出循环体,而是跳过本次循环结束前的语句,回到循环的条件测试部分,重新开始循环。


浏览91 评论3
返回
目录
返回
首页
运算符 数组

发表评论

  • 评论列表