题解 2831: 画矩形

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

筛选

画矩形(C语言简便易懂)

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

(c语言)详细解读

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

画矩形(但不一定是用@画=_=||)

摘要:解题思路:        用脚趾头想的,不信请看我的优质答案=_=||注意事项:        这题目很娘贼,他直接用@给你画了一个矩形,搞得你打印时直接就想着输出@,这里的思考两秒钟=_=参考代码:……

2831: 画矩形

摘要:```cpp #include using namespace std; int main() { int a,b,d; char c; cin>>a>>b>>c……

画矩形(清晰思路)

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

题解 2831: 画矩形

摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { char ch; int i, j, h, l, flag; //h,高,l,长;flag为空……

感谢支持,谢谢你们的支持

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

画矩形行行

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

题解 2831: 画矩形

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