杂记

作者: BioJournal_Link | 来源:发表于2019-08-15 01:23 被阅读0次

    控制流
    1.重复和循环
    循环结构重复地执行一个或一系列语句,直到某个条件不为真为止。
    (1)for结构
    for循环重复地执行一个语句,直到某个变量的值不再包含在序列seq中为止
    for(var in seq) statement
    (2)while结构
    while循环重复地执行一个语句,直到条件不为真为止
    while(cond) statement
    2.条件执行
    (1)if-else结构
    if(cond) statement
    if(cond) statement1 else statement2
    (2)ifelse结构
    ifelse(cond,statement1,statement2)
    若cond为TRUE,则执行第一个语句;若cond为FALSE,则执行第二个语句
    (3)switch结构
    R 要么输出结果,要么将结果保存在一个变量中
    如果想同时完成这两种操作,那么你可以用括号将赋值语句括起来

    相关文章

      网友评论

          本文标题:杂记

          本文链接:https://www.haomeiwen.com/subject/bzoojctx.html