百里屠苏top  

一、循环

1.for 循环

for (i in 1:10)
  print(i)
#-------------------------------------------
s<-0
for (i in 1:50){
  s=s+i
}
s

sum(1:50)  #实现上面前50求和的功能

#-------------------------------------------

2.while循环

i<-1
while(i<=10){
  print(i)
  i=i+1
}

3.apply

二、条件

1.if 

i<-4
if(i%%2==0){
  print(paste(i,"是偶数"))
}else{
  print(paste(i,"是奇数"))
}

2.if ...else...

3.ifelse 

4.switch

posted on 2024-11-18 17:20  百里屠苏top  阅读(1)  评论(0编辑  收藏  举报