编写一个名为 dayplan(温度,工作)的函数。函数应该首先检查它是否处理实际值。因此温度ε[-20,40] 和work∈{'是','否'} 。对于实际值,函数应该给出这些值:
当温度> = 20 和 job =='Yes' 时,那么“吃冰淇淋”
当温度> = 20 和 job =='No' 时,则“海”
当温度> 20 和 job =='Yes' 时,那么“购物”
温度< 20 和 job =='Noo 时,然后“床”
答案 0 :(得分:0)
函数的大纲可能如下所示:
dayplan <- function(temperature, work){
if(...){
if(...){
print("Eat ice cream.")
} else if(...) {
...
...
}
} else {
print("Inputs not feasible.")
}
}
使用每项活动的条件填补空白。