题解 1250: 素数回文

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

筛选

素数回文 (C语言代码)

摘要:解题思路:用两个函数,一个判断素数,一个判断回文数;注意事项: 不用long long 也行;参考代码:#include<stdio.h>int isPrime(int n){    if (n==0……

好理解一些

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int huishus(int n)  //素数函数{ int i; if (n % 2 == 0) r……

这道题的最普通做法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int sushu(int n) 检查是否为素数{ int m = 0; for (int i = 2; i < n; i++) if……

素数回文 (Java代码)

摘要:解题思路:注意事项:参考代码:import java.util.*; public class Main { //判断素数 public static boolean isPrime(int……

直接理解(Python)

摘要:a,b=map(int,input().split())def sushu(N):    for i in range(2,N):        if N%i==0:            retur……