编辑代码

object Hello extends App {
    for (i <- 1 to 100 if i % 2 != 0) {
  println(i)
}

}