题解 1037: [编程入门]宏定义的练习

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

用函数写的

摘要:解题思路:注意事项:参考代码:def get_sum(a=4,b=3):    a,b =map(int,input().split())    sum = a%b    print(sum)get_……

1037 宏定义的练习

摘要:解题思路:1.输入两个整数2.求两个整数相除的余数注意事项:参考代码:   a,b = map(int,input().split())                 print(a%b)……

python 超简单写法

摘要:解题思路:注意事项:注意题目是求余数 python的/是除 %求余参考代码:a,b=map(int,input().strip().split())print(a%b)……

python编写a%b

摘要:解题思路:跟a+b一样的思路只是改运算符,具体注意事项参照a+b参考代码:while True: try: a,b=map(int,input().strip().split()) print(a……