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">/************************************************************************/
- /*
- 18. 设有8×8的二维数组a,其中每个元素取值如下:
- 当 i=j 时 a[j]=M (M是你的学号)
- 当 i<j 时 a[j]=i+j
- 当 i>j 时 a[j]=i×j
- 编程序求所有的数组元素之和。
-
-
- */
- /************************************************************************/
- #include <stdio.h>
- #include <stdlib.h>
- #include <math.h>
- #include <string.h>
-
- //用一个数组保存相应的个数
- void main()
- {
- int arr[8][8]={0};
- int sum=0;
- for (int i=0;i<8;i++)
- {
- for (int j=0;j<8;j++)
- {
- if (i==j)
- {
- arr[j]=2;
-
- }
- else if (i>j)
- {
- arr[j]=i*j;
- }
- else
- arr[j]=i+j;
- printf("%5d",arr[j]);
- sum+=arr[j];
- }
- printf("\n");
- }
- printf("\n所有数字之和为%6d",sum);
- system("pause");
- }</pre><br></pre></pre></pre>
|
|