解题思路: 都在代码里了
注意事项: 一定要看清楚前面还有几个空格!!
参考代码:
#include<iostream>
using namespace std;
int main(void)
{
int n,m;
cin>>n>>m;
int Std=n;
int STK=1,STG=2*Std-1;
for(int i=0;i<n;i++)
{
for(int t=0;t<m;t++) //图形前面还有几个空格,我吐了
{
cout<<" ";
}
for(int j=0;j<n-1-i;j++)
{
cout<<" ";
}
for(int k=STK,g=STG;k<=2*Std-1,g>=1;) // for()循环里面可以放多个变量
{
for(int f=1;f<=k;f++)
{
cout<<"*";
}
for(int u=0;u<m;u++)
{
cout<<" ";
}
for(int p=1;p<=g;p++)
{
cout<<"*";
}
if(i<n-1)
cout<<endl;
STK+=2;
STG-=2;
break;
}
}
return 0;
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题6.1 (C语言代码)浏览:650 |
C语言程序设计教程(第三版)课后习题8.9 (C语言代码)浏览:690 |
简单编码 (C++代码)浏览:730 |
【亲和数】 (C语言代码)浏览:588 |
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:648 |
C语言程序设计教程(第三版)课后习题10.4 (C语言代码)浏览:583 |
C语言程序设计教程(第三版)课后习题5.6 (C语言代码)浏览:594 |
Tom数 (C语言代码)浏览:517 |
小九九 (C语言描述,不看要求真坑爹)浏览:1006 |
简单的a+b (C语言代码)浏览:491 |