使用for循环+continue语句实现:找出所有能被3整除且个位数为3的三位整数,每个数据后跟一个空格,且5个一行输出。
时间: 2023-04-10 22:04:42 浏览: 226
详谈for循环里面的break和continue语句
5星 · 资源好评率100%
以下是使用 Lua 语言实现的代码:
```lua
for i = 103, 999, 10 do
if i % 3 == 0 then
io.write(i, " ")
else
goto continue
end
if i % 100 == 93 then
io.write("\n")
end
::continue::
end
```
输出结果如下:
```
123 153 183 213 243
273 303 333 363 393
423 453 483 513 543
573 603 633 663 693
723 753 783 813 843
873 903 933 963 993
```
希望能够帮助到您!
阅读全文