惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

N
News | PayPal Newsroom
Security Archives - TechRepublic
Security Archives - TechRepublic
Hacker News: Ask HN
Hacker News: Ask HN
H
Hacker News: Front Page
Apple Machine Learning Research
Apple Machine Learning Research
TaoSecurity Blog
TaoSecurity Blog
Help Net Security
Help Net Security
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
V
V2EX
Hugging Face - Blog
Hugging Face - Blog
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
人人都是产品经理
人人都是产品经理
博客园 - 三生石上(FineUI控件)
Security Latest
Security Latest
Cloudbric
Cloudbric
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
www.infosecurity-magazine.com
www.infosecurity-magazine.com
Know Your Adversary
Know Your Adversary
A
Arctic Wolf
L
LangChain Blog
Application and Cybersecurity Blog
Application and Cybersecurity Blog
The GitHub Blog
The GitHub Blog
P
Proofpoint News Feed
W
WeLiveSecurity
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
M
MIT News - Artificial intelligence
Google DeepMind News
Google DeepMind News
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The Cloudflare Blog
小众软件
小众软件
NISL@THU
NISL@THU
云风的 BLOG
云风的 BLOG
P
Privacy & Cybersecurity Law Blog
S
Security @ Cisco Blogs
博客园 - 【当耐特】
I
InfoQ
Vercel News
Vercel News
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
P
Proofpoint News Feed
O
OpenAI News
Google DeepMind News
Google DeepMind News
N
News and Events Feed by Topic
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
K
Kaspersky official blog
T
Threat Research - Cisco Blogs
量子位
宝玉的分享
宝玉的分享

飞絮落叶雪 - 编程

我让 Ai 写了一个记账本 1011-空心六边形 1149 - 回文数个数 1071 - 字符图形7-星号菱形 1140 - 亲密数对 1136 - 输出m和n范围内的完全数(完美数) 1089 - 找数字 1151-桐桐数
1138 - 求无暇素数
Mr.He · 2024-06-14 · via 飞絮落叶雪 - 编程

1138无暇素数.jpg

思路

  1. 将字符串读取并存入到数组a[i]中;
  2. 编写相关函数;
  3. 调用函数判断是否符合要求;
  4. 输出。

知识点

  1. 字符串的读入与存储;
  2. 函数的编写与调用;
  3. 难点是去掉最后一个逗号。

代码实现

#include <iostream>
using namespace std;

//MrHe.net原创,转载需保留链接,谢谢。

//定义一个判断质数的函数
bool isPrime(int x) {
    int i;
    bool r = true;
    for(i = 2; i * i <= x; i++) {
        if(x % i == 0) {
            r = false;
            break;
        }
    }
    if (x < 2) {
        r = false;
    }
    return r;
}
//定义一个函数,将字符串转换成数字
int charToNum(char a) {
    return a - 48;
}

int main() {
    char a[20];
    int b[20];
    int n1, n2, j, k = 0, x;
    cin >> a;
    int sum = 0;
    //将字符串%前面的数字存入数组a[i]
    for (int i = 0; a[i] != '%'; i++) {
        //从第二位开始,因为第一位没有i-1
        if(i > 0) {
            //判断相邻两个数和交换数位后是否均为质数
            n1 = charToNum(a[i]) * 10 + charToNum(a[i - 1]);
            n2 = charToNum(a[i - 1]) * 10 + charToNum(a[i]);
            //符合条件的数存入数组b[k]
            if(isPrime(n1) == true and isPrime(n2) == true) {
                b[k] = n2;
                k++;
            }
        }
    }
    //输出,这里去掉后面的逗号脑子都想破了~
    for(x = 0; x < k; x++) {
        cout << b[x];
        if(x < k - 1) {
            cout << ",";
        }
    }
}