mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
Create 1411_1232123212.c
This commit is contained in:
parent
150885ddef
commit
ab379ffdb2
27
QUSTOJ/1411_1232123212.c
Normal file
27
QUSTOJ/1411_1232123212.c
Normal file
|
@ -0,0 +1,27 @@
|
|||
#include "stdio.h"
|
||||
#include "math.h"
|
||||
|
||||
int main ()
|
||||
{
|
||||
int n;
|
||||
scanf ("%d", &n);
|
||||
int x=0;
|
||||
x = sqrt(n);
|
||||
int i;
|
||||
for (i=2; i<=x; i++)
|
||||
{
|
||||
if (n%i==0)
|
||||
{
|
||||
printf ("0");
|
||||
break;
|
||||
}
|
||||
if (i=x-1)
|
||||
{
|
||||
printf ("1");
|
||||
break;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user