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"><pre code_snippet_id="91880" snippet_file_name="blog_20131202_1_2646179" class="cpp" name="code">/*
- 已知有N个无规律的正整数,请编程序求出其中的素数并打印出能被5整除的数之积。
- */
- #include <stdio.h>
- #include <stdlib.h>
- #include <math.h>
-
- void f500241(int *p)//判断是否为质数
- {
-
- for (int i=0;i<20;i++)
- {
- int flag=1;
- for(int j=2;j<p-1;j++)
- {
- if (p%j == 0 )
- {
- flag=0;
- break;
- }
- }
- if (flag==1)
- {
- printf("%d\t",p);
- }
- }
- }
- void f500242(int *p)//判断能否为5整除,能整除的求出相乘之积
- {
- int sum=1;
- for (int i=0;i<20;i++)
- {
- if (p%5 !=0)
- {
- continue;
- }
- else
- {
- sum*=p;
- }
- }
- printf("sum=%d",sum);
-
- }
- void main()
- {
- int a[20];
- for (int i=0;i<20;i++)//分配随机整数
- {
- a=rand()%100+10;
- printf("%d\t",a);
- }
- printf("\n\n");
- f500241(a);
- printf("\n\n");
- f500242(a);
-
- system("pause");
- }</pre><br></pre><br></pre></pre></pre>
|
|