import java.lang.Math.*;
Prime
精选 转载import java.io.*;
public class Prime
{
public static Boolean primeNumber(long x)
{
Boolean flag = true;
if(x<4)
{
if(x==1)
flag=false;
}
else
{
for(int i = 2; i<(int)Math.sqrt(x)+1;i++)
{
if(x%i==0)
{
flag=false;
}
}
}
return flag;
}
public static void main(String args[])
{
Boolean flag;
flag =primeNumber(Long.parseLong(args[0]));
System.out.println(flag);
}
}
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
Prime Path
题目:题目链接题解:bfs先使用质数筛,然后枚举换位的情况#include <iostrea
bfs i++ #include ios -
Prime Distance
传送门题意:求区间l到r内差最小和差最大的质数对。思路:根据“若x为合数,则它在区间[2,x]
算法 动态规划 线性代数 i++ #define -
Co-prime容斥原理 二进制 质数 ios #include
-
Yes, Prime Minister
传送门思路:先筛一遍质数,对于n<0,需要先将其连加到刚好为正,答案为2n+1+刚好为
#include #define ios -
Summary: Prime
r aprime) is anatural numbergreater than 1 that has no positivedivisorsother than 1 and itsel...
Summary Prime ide #include git -
Prime ring problem
科普顾名思义了,英文不差的都可以直译出来,素数环问题,这里把百度百科的词条贴出来科普一下题目题目描述:
#include 素数环 c代码 深度优先搜索 百度