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">/*
- 功能:求二维数组中每行元素的平均值,不许引入其它的数组
-
-
- 时间:16:21 2013/10/24
- */
-
- #include<stdio.h>
- #include<stdlib.h>
-
- #define N 5
-
- void getArray(int a[][N],int n); //给二位数组随机赋值原型
- void putArray(int a[][N], int n); //打印出二维数组原型
-
- void main()
- {
- int a[N][N] = { 0 };
- getArray(a,N); //给数组赋值
- putArray(a,N); //打印数组
-
- for (int i = 0; i < N; i++)
- {
- int sum = 0; //第i行和,初始化为0
- for (int j = 0; j < N; j++)
- {
- sum += a[j]; //将第i行元素加给sum
- }
- printf("In %dth row! The average is %f \n",i,sum/5.0); //打印结果,没用其他数组哦!!!!
- }
- system("pause");
- }
-
- void putArray(int a[][N], int n) //打印二维数组
- {
- for (int i = 0; i < n; i++)
- {
- for (int j = 0; j < N; j++)
- {
- printf("%-4d",a[j]);
- }
- printf("\n");
- }
- }
-
- void getArray(int a[][N],int n) //给二维数组随机赋值
- {
- for (int i = 0; i < n; i++)
- {
- for (int j = 0; j < N; j++)
- {
- a[j] = rand() % 90 + 10;
- }
- }
- }</pre><br><br></pre></pre></pre>
|
|