Menu
×
×
正确
my_function <- function(x) {
@(6) (5 * x)
}
print(my_function(3))
my_function <- function(x) {
return (5 * x)
}
print(my_function(3))
不正确
点击 此处 重试 正确
下一题 ❯my_function <- function(x) {w3exercise_input_no_0(5 * x) } print(my_function(3)) |