欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

2014年西北工业大学机试第六题

程序员文章站 2022-05-15 14:08:48
...

2014年西北工业大学机试第六题2014年西北工业大学机试第六题

#include<iostream>
#include<cmath>
using namespace std;
bool judge(int n){
	if(n <= 1){
		return false;
	}
	if(n == 2|| n == 3){
		return true;
	}
	if(n % 2 == 0){
		return false;
	}
	for(int i = 3;i <= sqrt(n);i += 2){
		if(n % i == 0){
			return false;
		}
	}
	return true;
}
int main(){
	
	int n;
	cin>>n;
	if(judge(n)){
		cout<<"Yes"<<endl;
	}else{
		cout<<"No"<<endl;
	}
	return 0;
}