画矩形(C语言简便易懂) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){ inta,b,n,i,j…… 题解列表 2022年11月09日 0 点赞 0 评论 276 浏览 评分:9.7
(c语言)详细解读 摘要:解题思路:注意事项:参考代码:#include"stdio.h"intmain(){ charChar…… 题解列表 2023年01月03日 0 点赞 0 评论 177 浏览 评分:6.0
画矩形(但不一定是用@画=_=||) 摘要:解题思路: 用脚趾头想的,不信请看我的优质…… 题解列表 2023年01月08日 0 点赞 0 评论 332 浏览 评分:9.9
分情况讨论,画矩形啥都行 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){intx,y,n,i,j;charz;scanf("%d%d%c%d",&x…… 题解列表 2023年01月19日 0 点赞 1 评论 222 浏览 评分:9.9
画矩形(清晰思路) 摘要:解题思路:注意事项:注意换行符参考代码:#include<stdio.h>intmain(){intheight,width,control,i,j;//i控制宽度,j控制高度charch…… 题解列表 2023年01月30日 0 点赞 0 评论 128 浏览 评分:0.0
题解 2831: 画矩形 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){char ch;int i,…… 题解列表 2023年02月20日 0 点赞 0 评论 169 浏览 评分:9.9
2831: 画矩形(C语言) 摘要:#includeintmain(){inta,b;charc;intd;scanf("%d%d%c%d",&a,&b,&c,&d);for(inti…… 题解列表 2023年07月20日 0 点赞 0 评论 212 浏览 评分:0.0
画矩形(思路简单) 摘要:解题思路:注意事项:根据条件写代码参考代码:#include<stdio.h>intmain(){ intx,y,c,n; &…… 题解列表 2023年07月31日 0 点赞 0 评论 164 浏览 评分:9.9
画矩形(呃,(╹ڡ╹ )) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int a,b;scanf("%d%d",&a…… 题解列表 2023年10月07日 0 点赞 0 评论 63 浏览 评分:0.0
画矩形(一般思路) 摘要:解题思路:先定义变量,字符是char,分为两种情况,第一种为实心,i,j代表行和列,然后直接输出特定字符,第二种为空心,i,j代表行和列,在指定行列(第一行最后一行,最后一行,最后一列)输出特定字符,…… 题解列表 2023年10月31日 0 点赞 0 评论 176 浏览 评分:7.3