文章

55

粉丝

100

获赞

12

访问

31.1k

头像
素数判定 - 哈尔滨工业大学 题解:
P1355 哈尔滨工业大学机试
发布于2024年3月14日 12:13
阅读数 416

#include<stdio.h>
#include<iostream>
using namespace std;

bool sushu(int n){
	for(int i = 2 ; i<n ;i++){
		if(n%i==0){
			return 0;
		}
	}
	return 1;
}

int main(){
	int n;
	while(cin>>n){
		if(n<=1){
			cout<<"no"<<endl;
		}
		if(sushu(n)){
			if(n>1){
				cout<<"yes"<<endl;
			}
		}else{
			cout<<"no"<<endl;
		}
	}
}
 
登录查看完整内容


登录后发布评论

暂无评论,来抢沙发