滴水逆向联盟
标题:
基于visual Studio2013解决C语言竞赛题之1024求和
[打印本页]
作者:
大灰狼
时间:
2014-8-28 08:29
标题:
基于visual Studio2013解决C语言竞赛题之1024求和
题目
download.png
(31.15 KB, 下载次数: 400)
下载附件
保存到相册
2014-8-28 08:29 上传
解决代码及点评
<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>
欢迎光临 滴水逆向联盟 (http://dtdebug.com/)
Powered by Discuz! X3.2