TA的每日心情 | 开心 2014-6-18 08:29 |
---|
签到天数: 14 天 [LV.3]偶尔看看II
滴水大师
 
- 积分
- 2345
|
题目
解决代码及点评
- <pre code_snippet_id="91880" snippet_file_name="blog_20131202_1_2646179" class="cpp" name="code"></pre><pre code_snippet_id="91880" snippet_file_name="blog_20131202_1_2646179" class="cpp" name="code"><pre code_snippet_id="91880" snippet_file_name="blog_20131202_1_2646179" class="cpp" name="code"><pre code_snippet_id="91880" snippet_file_name="blog_20131202_1_2646179" class="cpp" name="code"><pre code_snippet_id="91880" snippet_file_name="blog_20131202_1_2646179" class="cpp" name="code">/*
- 找规律,编程序打印6×6的矩阵:
-
- 1 2 3 5 8 13
- 1 4 9 17 30 51
- 1 6 19 45 92 173
- . . .
-
- */
- #include <stdio.h>
- #include <stdlib.h>
-
- void main()
- {
- int a[6][6];//定义6*6数组
- for (int i=0;i<6;i++)//给第0列赋值
- {
- a[0]=1;
- }
-
- a[0][1]=2;//给第0行第一列赋值
-
- for (int j=2;j<6;j++)//给第0行其余元素赋值
- {
- a[0][j]=a[0][j-1]+a[0][j-2];
- }
-
- for (int i=1;i<6;i++)//余下的每个数等于其左上方,左方,上方元素相加的和
- {
- for (int j=1;j<6;j++)
- {
- a[j]=a[i-1][j-1]+a[i-1][j]+a[j-1];
- }
-
- }
-
- for (int i=0;i<6;i++)//打印数组
- {
- for (int j=0;j<6;j++)
- {
- printf("%d\t",a[j]);
- }
- printf("\n");
- }
-
- system("pause");
- }</pre><br></pre></pre></pre>
|
|