编辑代码
Scala代码
2.13.2
运行
object
Hello
extends
App {
for
(i<-
0
to
9
;
if
i%
2
==
0
;
if
i>
5
){
print
(i+
" "
)} }