题解 | #Prime Number#

Prime Number

https://www.nowcoder.com/practice/c5f8688cea8a4a9a88edbd67d1358415

#include<iostream>
#include <cstdio>
#include <string>
#include <algorithm>
#include<vector>
#include<cmath>
using namespace std;

const int INF = 1e6;
bool isPrime(int number)
{
	for (int i = 2; i <= sqrt(number); i++)
	{
		if (number % i == 0)
		{
			return false;
		}
	}
	return true;
}

int main() 
{
	int n_count = 0;
	vector<int>result_list;
	for (int i = 2; i < INF; i++)
	{
		if (isPrime(i))
		{
			result_list.push_back(i);
		}
	}
	int K;
	while (scanf("%d", &K)!=EOF)
	{
		printf("%d\n", result_list[K-1]);
	}


}

全部评论

相关推荐

前段时间投boss,实在没绷住,就发出来吧
测开小登的自我救赎:这种就别较真了,感觉应该是那种吃上了学历贬值的时代红利感觉自己也能找一堆92硕士的边角料小公司吧
点赞 评论 收藏
分享
gelmanspar...:奖学金删掉,自我评价删掉,简历压缩一下,写一页
如果再来一次,你还会学机...
点赞 评论 收藏
分享
11-03 14:57
西北大学 营销
Belltrix:其实就是每根转动一定的角度
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务