编辑代码
Scala代码
2.13.2
运行
object
Hello
extends
App
{
for
(i
<-
1
to
100
if
i
%
2
!=
0
)
{
println(i)
} }