编写程序输入两个整数1500和350,突出他们的商和余数。
时间: 2023-04-12 12:00:56 浏览: 134
4_commondevisor_
可以使用以下代码实现:
```lua
local a = 1500
local b = 350
local quotient = math.floor(a / b)
local remainder = a % b
print("商:" .. quotient)
print("余数:" .. remainder)
```
输出结果为:
```
商:4
余数:100
```
阅读全文