码迷,mamicode.com
首页 > 编程语言 > 详细

R语言学习-while循环

时间:2017-08-14 13:28:24      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:判断   print   bre   nbsp   ext   r语言   学习   next   break   

1、直接循环

i = 0
while(i<5) {
  i <- i+1;
  print(1:i);
}

输出结果:

[1] 1
[1] 1 2
[1] 1 2 3
[1] 1 2 3 4
[1] 1 2 3 4 5

 

2、跳出这一次

i = 0
while(i<5) {
  i <- i+1
  if(i==4) {
  next;
  }
  print(1:i);
}

判断当i=4的时候,跳出这一次,不执行print输出,输出结果:

[1] 1
[1] 1 2
[1] 1 2 3
[1] 1 2 3 4 5

 

3、跳出整个循环

i = 0
while(TRUE) {
  i <- i+1
  if(i==4) {
  next;
  }
  print(1:i);
  if(i==10) {
  break;
  }
}

当i=10的时候,跳出整个循环,不再执行;输出结果:

[1] 1
[1] 1 2
[1] 1 2 3
[1] 1 2 3 4 5
[1] 1 2 3 4 5 6
[1] 1 2 3 4 5 6 7
[1] 1 2 3 4 5 6 7 8
[1] 1 2 3 4 5 6 7 8 9
[1] 1 2 3 4 5 6 7 8 9 10

R语言学习-while循环

标签:判断   print   bre   nbsp   ext   r语言   学习   next   break   

原文地址:http://www.cnblogs.com/xugege/p/7357183.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!