求长方形面积-题解(Python代码)python
摘要:```python
a,b = map(int,input().split())#输入字符串分割并转化成多个int数值(这里转化为两个a,b)
l=(a+b)*2#长
s=a*b#面积
pri……
求长方形面积-题解(Python代码)
摘要:简单的求长方形面积和周长
主要要用占位符输出C:周长 如果不使用会出错
```
a,b=map(int,input().split())
print("C:%d"%((a+b)*2))
pr……
Ikaros-1952: 求长方形面积 Python解决
摘要:解题思路:使用format、map函数参考代码:number = list(map(int,input().split()))C = int((number[0] + number[1]) * 2)S……
1952——————求长方形的面积
摘要: a,b = map(int,input().split())
print('C:{}'.format(a*2+b*2))
print('S:{}'.format(a*b))……