Create 1734.c

pull/14/head
Kirigaya Kazuto 2016-05-21 12:40:11 +08:00
parent 903fdbe503
commit 8cf7067483
1 changed files with 36 additions and 0 deletions

36
QUSTOJ/1734.c Normal file
View File

@ -0,0 +1,36 @@
#include <stdio.h>
//Written by Coffee. 判断素数
int isPrime(int num)
{
if (num == 2 || num == 3)
{
return 1;
}
if (num % 6 != 1 && num % 6 != 5)
{
return 0;
}
for (int i = 5; i*i <= num; i += 6)
{
if (num % i == 0 || num % (i+2) == 0)
{
return 0;
}
}
return 1;
}
int main()
{
int a;
scanf("%d",&a);
for(int i=2;i<=a/2;i++)
{
if(isPrime(i)&&isPrime(a-i))
{
printf("%d=%d+%d\n",a,i,a-i);
}
}
return 0;
}