PAT乙级1013

题目链接

https://pintia.cn/problem-sets/994805260223102976/problems/994805309963354112

题解一

从第一个素数开始找起,输出\(P_M\)\(P_N\)即可

// PAT BasicLevel 1013
// https://pintia.cn/problem-sets/994805260223102976/problems/994805309963354112

#include 
using namespace std;

bool isPrime(int num);

int main()
{
    // 获取用户输入
    int n,m;
    cin >> m >> n;

    // 素数数量
    int count = 0;

    // 遍历判断是否为素数
    for (int num = 1;count=m){
                // 输出素数
                cout << num;
                if(count

作者:@臭咸鱼

转载请注明出处:https://www.cnblogs.com/chouxianyu/

欢迎讨论和交流!


转载于:https://www.cnblogs.com/chouxianyu/p/11303640.html

你可能感兴趣的:(PAT乙级1013)