题解 2831: 画矩形

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

筛选

for 语句 画矩形

摘要:解题思路:从上到下,自左向右输出注意事项:第一行和最后一行任何时候都需要全部输出参考代码:#include<iostream>using namespace std;int main(){    in……

题解 2831: 画矩形

摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){    int a,b,d;    char c;    cin>>a……

用for循环画矩形

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main {    public static void main(String[] args……

编写题解 2831: 画矩形

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

2831: 画矩形

摘要:参考代码:high, wide, s, flag = map(str, input().split()) for i in range(int(high)):     for j in range……

画矩形(呃,(╹ڡ╹ ))

摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a,b; scanf("%d%d",&a,&b); getchar(); cha……

画矩形普通思路

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int x,y,n;    char c;    scanf("%d %d %c %d",&x,&y,&c……