题解 1250: 素数回文

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

筛选

优质题解

素数回文 (C++代码)

摘要:解题思路: 把题目分解分别写出判断素数和回文数的函数,再把最终判断的数整合在一起注意事项:    范围整型装不下,需要开到long long参考代码:#include <stdio.h> #incl……

素数回文 (Java代码)

摘要:解题思路:判断是否为回文,可以利用字符串中的方法;String s = Integer.toString(i);//将int型数字转化成String类型String s1 = new StringBu……

素数回文 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() {     int a,b,flag,a1[100]={0},b1[100]={0},i,j; sca……

素数回文 (Java代码)

摘要:解题思路: import java.util.Scanner; public class C1250 { public static void main(String[] args) { ……

素数回文 (C语言代码)

摘要:#include <stdio.h>int main(){     int flag1=1,flag2=0;     long long a,b,i,j,temp1=0,temp2=0;       ……

素数回文 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(void){ long i, j, k, l, a, b, m, flag, count, count1; int ……