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">/*
- 35. 用随机函数求出10组三位正整数,每组十个数,
- 调用一函数打印出每组数,并编一函数求出每组中的最大数。
- */
- #include <stdio.h>
- #include <stdlib.h>
- #define N 10
- /*
- 打印数组
- */
- void printfArr(int (*a)[N])
- {
- for (int i = 0; i < N; i++)
- {
- for (int j = 0; j < N; j++)
- {
- printf("%-5d",a[j]);
- }
- printf("\n");
- }
- }
- /*
- 初始化数组
- */
- void initArr(int (*a)[N])
- {
- for (int i = 0; i < N; i++)
- {
- for (int j = 0; j < N; j++)
- {
- a[j] = 100 + rand() % 900;
- }
- }
- }
- /*
- 打印每行最大值
- */
- void printRowMax(int (*a)[N])
- {
- for (int i = 0; i < N; i++)
- { int rowMax = a[0];
- for (int j = 0; j < N; j++)
- {
- if (a[j] > rowMax)
- {
- rowMax = a[j];
- }
- printf("%-5d",a[j]);
- }
- printf(" rowMax = %d",rowMax);
- printf("\n");
- }
- }
- void main()
- {
- int a[N][N];
- initArr(a);
- printfArr(a);
- printf("\n\n\n");
- printRowMax(a);
- system("pause");
- }</pre><br><br></pre></pre></pre>
|
|