码迷,mamicode.com
首页 > 其他好文 > 详细

yanghui杨辉三角--(一维数组)探索1 2

时间:2014-08-13 12:40:16      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   strong   for   

探索1

 

#include <iostream>
#define N 15
using namespace std;
int a[N]={1};
void yanghui(int n)
{
 int i,j;
 for(i=0;i<n;i++)  
 {   for(j=0;j<=i;j++) cout<<a[j]<<" ";
                       cout<<"\n";
       for(j=1;j<=i;j++) a[j]+=a[j-1];
    
 }
}                                        

int main()
{
  int i,j,n;
  cin>>n;  yanghui(n);
 
 return 0;
}

 

 

 

 

bubuko.com,布布扣bubuko.com,布布扣

 

 

 

 

 

 

 

 

 

#include <iostream>
#define N 15
using namespace std;
int a[N]={1};
void yanghui(int n)
{
 int i,j;
 for(i=0;i<n;i++)  
 {   for(j=0;j<=i;j++) cout<<a[j]<<" ";
                       cout<<"\n";
       for(j=1;j<=i+1;j++) a[j]+=a[j-1];
   
 }
}                                        

int main()
{
  int i,j,n;
  cin>>n;  yanghui(n);
 
 return 0;
}

 bubuko.com,布布扣bubuko.com,布布扣

yanghui杨辉三角--(一维数组)探索1 2,布布扣,bubuko.com

yanghui杨辉三角--(一维数组)探索1 2

标签:style   blog   http   color   os   io   strong   for   

原文地址:http://www.cnblogs.com/2014acm/p/3909608.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!