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">/************************************************************************/
- /*
- 34. 编程序将一个6×6的二维数组左下三角部分全赋值为-1,右上三角全赋值为1,
- 主对角线(行,列下标相同)上的元素送入2。把数组中的值按列对齐方式输出。
- 要求: 不允许使用scanf_s函数。
-
- */
- /************************************************************************/
- #include <stdio.h>
- #include <stdlib.h>
- #include <math.h>
- #include <string.h>
-
-
-
- void main()
- {
-
- int arr[6][6]={0};
- for (int i=0;i<6;i++)
- {
- for (int j=0;j<6;j++)
- {
- if (i==j)
- {
- arr[j]=2;
- }
- else if (i>j)
- {
- arr[j]=-1;
- }
- else
- arr[j]=1;
- printf("%5d",arr[j]);
- }
- printf("\n");
- }
- system("pause");
- }</pre><br><br></pre></pre></pre>
|
|