好程序,大家分享
. 我想这是最简便的写法了,俺花了一节课时间#include<iostream>
using namespace std;
void main()
{ int n,i,j,k,a,b=0;
cin>>n; // n 是 * 最多的行的 * 个数,且是奇数
for(i=1;i<n+1;i++) // i 为行数,其实 i=n ,
{ a=i;
if(i>n/2+1) {a=n/2-b++;}
for(j=n-(n/2+a);j>0;j--)
cout<<" ";
for(k=n-2*(n/2+1-a);k>0;k--)
cout<<"*";
cout<<endl;
}
}
----------------解决方案--------------------------------------------------------
#include<iostream><BR>using namespace std;<BR> <BR>int main(){<BR> int n;<BR> cin >> n;<BR> for (int i = 0;i < n;++i){<BR> for (int j = 0;j < n+i;++j)<BR> cout << (j < i ? " " : "* ");<BR> cout << endl;<BR> }<BR> system("pause");<BR> return 0;<BR>}
要简单?这个
----------------解决方案--------------------------------------------------------
LS 用什么写的. 看不懂
----------------解决方案--------------------------------------------------------
都是C++,牛X
----------------解决方案--------------------------------------------------------
2楼的程序是这样的
#include<iostream>
using namespace std;
int main(){
int n;
cin >> n;
for (int i = 0;i < n;++i){
for (int j = 0;j < n+i;++j)
cout << (j < i ? " " : "* ");
cout << endl;
}
system("pause");
return 0;
}
----------------解决方案--------------------------------------------------------
2 楼程序:
程序代码:
#include<iostream>
using namespace std;
int main(void) {
int n;
cin >> n;
for (int i = 0; i < n; ++i) {
for (int j = 0; j < n + i; ++j)
cout << (j < i ? " " : "* ");
cout << endl;
}
system("pause");
return 0;
}
using namespace std;
int main(void) {
int n;
cin >> n;
for (int i = 0; i < n; ++i) {
for (int j = 0; j < n + i; ++j)
cout << (j < i ? " " : "* ");
cout << endl;
}
system("pause");
return 0;
}
----------------解决方案--------------------------------------------------------
这个不简单吧.... 虽然我不懂C++ 但明显这程序是一个判断和三个FOR循环
T(n)=n的立方了...
----------------解决方案--------------------------------------------------------
日 没学过C++
----------------解决方案--------------------------------------------------------
C++直接填充*就可以了.
----------------解决方案--------------------------------------------------------
你们写的 不是我要的啊我要的是 *
***
*****
***
*
----------------解决方案--------------------------------------------------------