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">/*
- 分别输入N和M个数到数组A和数组B中。把只在其中一个数组中出现的那些数送入到数组C中,并指出它们在A或B数组中的位置。
- */
- #include <stdio.h>
- #include <stdlib.h>
- void main()
- {
- const int n=10;
- const int m=10;
- int a[n];
- int b[m];
- int c[n+m]={0};//为保证不同的数全部存储,c的大小定义为n+m;
- int k=0;
-
- //给数组a和b分配随机数
- for (int i=0;i<n;i++)
- {
- a=rand()%100;
- printf("%d\t",a);
- }
- printf("\n\n");
-
- for (int i=0;i<m;i++)
- {
- b=rand()%200;
- printf("%d\t",b);
- }
- printf("\n\n");
- //a与b比较,将a中不相同的数赋给c,并输出在a中的位置
- for (int i=0;i<n;i++)
- {
- int flag1=0;
- for (int j=0;j<m;j++)
- {
- if (a==b[j])
- {
- flag1=1;
- continue;
- }
- }
- if (flag1==0)
- {
- c[k]=a;
- printf("i=%d\t",i);
- k++;
- }
- }
-
- //b与a比较,将b中不相同的数赋给c,并输出在b中的位置
- for (int j=0;j<m;j++)
- {
- int flag2=0;
- for (int i=0;i<n;i++)
- {
- if (b[j]==a)
- {
- flag2=1;
- continue;
- }
- }
- if (flag2==0)
- {
- c[k]=b[j];
- printf("j=%d\t",j);
- k++;
- }
- }
-
- //打印c
- for (int i=0;i<k;i++)
- {
- printf("%d\t",c);
- }
-
- printf("\n\n");
-
-
- system("pause");
- }</pre><br><br></pre></pre></pre>
|
|