题解 | 计算带余除法
计算带余除法
https://www.nowcoder.com/practice/34d3911bf2fd48a285f6396e886a1259
import sys a,b = list(map(int,input().split())) c = a//b d = a%b print (c,d)
计算带余除法
https://www.nowcoder.com/practice/34d3911bf2fd48a285f6396e886a1259
import sys a,b = list(map(int,input().split())) c = a//b d = a%b print (c,d)
相关推荐