题解 2831: 画矩形

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

筛选

2831: 画矩形

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

2831: 画矩形

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() {    int sum = 0, j, a, b, c, i;    char d;    scanf("%d……

画矩形(清晰思路)

摘要:解题思路:注意事项:注意换行符参考代码:#include<stdio.h>int main(){ int height,width,control,i,j;//i控制宽度,j控制高度 char ch;……

通俗易懂,简单明了

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

编写题解 2831: 画矩形

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long ll;const int N=2e5……

编写题解 2831: 画矩形

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

题解 2831: 画矩形

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

2831: 画矩形

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

编写题解 2831: 画矩形

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;typedef long long ll;const int N=2e5……

(c语言)详细解读

摘要:解题思路:注意事项:参考代码:#include"stdio.h"int main(){     char Char;     int line,row,control,read;    //行,列,符……