2831: 画矩形 python (简单易懂)
摘要:解题思路:注意事项:参考代码:h,w,s,f=map(str,input().split())h=int(h)w=int(w)foriinrange(1,h+1): &nbs……
编写题解 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 =&……