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">/*
- 11. 判断一个给定的5×5方阵是否以第3列为轴线对称?
- */
- #include <stdio.h>
- #include <stdlib.h>
- #define N 5
- /*
- 功能:判断数组是否以某行对称
- 参数:a数组名 n数组行数 column指定某列
- 返回值:1: 对称 0:不对称
- */
- int isSymmetry(int (*a)[N],int n,int column)
- {
- for (int i = 0; i < n; i++)
- {
- for (int j = 0; j < column - 1; j++)
- {
- if (a[j] != a[n - 1 - j])
- {
- return 0;
- }
- }
- }
- return 1;
- }
- void main()
- {
- int a[N][N];
- for (int i = 0; i < N; i++)
- {
- for (int j = 0; j < N; j++)
- {
- a[j] = (j + 1) % 2;
- }
- }
- for (int i = 0; i < N; i++)
- {
- for (int j = 0; j < N; j++)
- {
- printf("%-3d",a[j]);
- }
- printf("\n");
- }
- isSymmetry(a,N,3) == 1 ? printf("Yes!\n") : printf("No!\n");
- system("pause");
- }</pre><br></pre></pre></pre>
|
|