题解 2831: 画矩形

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

筛选

通俗易懂,简单明了

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

2831: 画矩形

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

画矩形普通思路

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

画矩形(一般思路)

摘要:解题思路:先定义变量,字符是char,分为两种情况,第一种为实心,i,j代表行和列,然后直接输出特定字符,第二种为空心,i,j代表行和列,在指定行列(第一行最后一行,最后一行,最后一列)输出特定字符,……

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

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

画矩形(思路简单)

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

题解 2831: 画矩形

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

画矩形(清晰思路)

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