题解 2950: 素数回文数的个数

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

2950: 素数回文数的个数

摘要:解题思路:函数定义fuk you注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;ll fuk(ll……

2950: 素数回文数的个数

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;ll prime (ll x){    ……

可能好理解的

摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main {     public static void main(String[……

2950: 素数回文数的个数

摘要:解题思路:注意事项:参考代码:a=int(input())count=0s=[]for i in range(11,a+1):    for j in range(2,i):        if i%……

素数回文数的个数两种方法

摘要:暴力写法,范围只有1000我们只需要前后就好了 ``` #include #include #include #include using namespace std; typed……