题解 2831: 画矩形

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

筛选

2831: 画矩形

摘要:解题思路:注意事项:参考代码:l=list(input().split())a=int(l[0])b=int(l[1])ifl[3]=='0': &a……

2831: 画矩形

摘要:参考代码:high, wide, s, flag = map(str, input().sp……

编写题解 2831: 画矩形

摘要:解题思路:注意事项:参考代码:h,w,c,flag=map(str,input().split())h=int(h)w=int(w)flag=int(flag)ifflag==1: ……

画矩形(python)

摘要:解题思路:用两个循环打出长宽的边,再用if判断是否为实心参考代码:length, width, symbol, solid =&……