KOTLIN 语法
KOTLIN 变量
KOTLIN 数据类型
KOTLIN 运算符
KOTLIN 字符串
KOTLIN 布尔值
KOTLIN 如果...否则
KOTLIN While 循环
KOTLIN 数组
KOTLIN For 循环
KOTLIN 函数
KOTLIN 类

Menu
×
×
正确

练习:

填写缺失的部分以创建一个if..else表达式:

val time = 20 val greeting = if (time < 18) { "Good day." } else { "Good evening." } println(greeting)

不正确

点击 此处 重试

正确

下一题 ❯
val time = 20
  =  (time < 18) {
  "Good day."
} else {
  "Good evening."
}
println(greeting)







×

重置分数?