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">/*
- 功能:已知有三个数组A,B,C,A为5行5列的二维数组,B、C为只有5个元素的一维数组,键盘输入数据的顺序如下:
- 23,45,6,1,-3,4,5,233,456,0,3,56,78,-56,5,6,77,8,89,9,3,6,8,9,90
- 请编写程序,求出A的各行之和放至数组B的相应元素中,求出数组A的各列之和放至数组C的相应元素之中。
- 程序的输出部分要按下边形式显示:
- 23 45 6 1 -3 72
- 4 5 233 456 0 698
- 3 56 78 -356 5 -214
- 6 777 8 89 9 889
- 3 6 8 9 90 116
- 39 889 333 199 101
-
-
- 时间:18:44 2013/10/24
- */
-
- #include<stdio.h>
- #include<stdlib.h>
-
- #define N 5
-
- void gets_sArray(int a[][N],int n); //给二维数组赋值
-
- void main()
- {
- int a[N][N] = {0};
- int b[N] = {0};
- int c[N] = {0};
-
- gets_sArray(a, N);
- for (int i = 0; i < N; i++) //遍历数组,并将行和赋给b并打印
- {
- int sumRow = 0;
- for (int j = 0; j < N; j++)
- {
- sumRow += a[j];
- printf("%4d",a[j]);
- }
- b = sumRow;
- printf("%4d\n", b);
- }
-
- for (int i = 0; i < N; i++) //遍历数组求列和并打印
- {
- for (int j = 0; j < N; j++)
- {
- c += a[j];
- }
- printf("%4d", c);
- }
- system("pause");
- }
-
- void gets_sArray(int a[][N], int n)
- {
- for (int *p = &a[0][0]; p <= &a[n-1][N-1]; p++)
- {
- scanf_s("%d", p);
- }
- }</pre><br><br></pre></pre></pre>
|
|