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

R语言学习-repeat循环

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

标签:int   学习   repeat   [1]   循环   break   print   语言   while   

repeat循环=while(true)循环

i = 0

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

 

输出结果:

[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语言学习-repeat循环

标签:int   学习   repeat   [1]   循环   break   print   语言   while   

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

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