楊輝三角的輸出(C++語言)
阿新 • • 發佈:2019-02-02
#include <iostream>
usingnamespacestd;
int main()
{
int n;
cout<<"請輸入行數:";
cin>>n;
int a[20]={0},b[20]={0};
for (int i=0; i<n; i++)
{
b[0]=1;
b[i]=1;
for (int j=1; j<i; j++)
{
b[j]=a[j]+a[j-1];
}
for (int
{
cout<<' ';
}
for (int j=0; j<=i; j++)
{
if (j>0)
{
cout<<' ';
}
cout<<b[j];
}
cout<<endl;
for (int j=0; j<=i; j++)
{
a[j]=b[j];
}
}
system("pause");
return 0;
}