参考代码:
#include <bits/stdc++.h>
using namespace std;
int main(int argc, char** argv) {
int a,b,c;
char d;
cin>>a>>b>>d>>c;
if(c==0){
for(int i=1;i<=a;i++){
for(int j=1;j<=b;j++){
if(i==1||i==a||j==1||j==b){
cout<<d;
}
else{
cout<<" ";
}
}cout<<endl;
}
}
if(c==1){
for(int n=1;n<=a;n++){
for(int m=1;m<=b;m++){
cout<<d;
}
cout<<endl;
}
}
return 0;
}
0.0分
1 人评分
C语言程序设计教程(第三版)课后习题11.8 (C语言代码)浏览:640 |
【明明的随机数】 (C++代码)浏览:834 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:350 |
C语言程序设计教程(第三版)课后习题5.5 (C语言代码)浏览:590 |
简单的a+b (C语言代码)浏览:529 |
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:721 |
C二级辅导-进制转换 (C语言代码)浏览:750 |
川哥的吩咐 (C语言代码)浏览:663 |
理财计划 (C语言代码)浏览:494 |
C语言程序设计教程(第三版)课后习题7.5 (C语言代码)浏览:592 |