begin.lydsy 入门OJ题库:1104:纯粹合数

1104: 纯粹素数

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 258  Solved: 91
[Submit][Status][Web Board]

Description

纯粹素数是这样定义的:一个素数,去掉最高位,剩下的数仍为素数,再去掉剩下的数的最高位,余下的数还是素数。这样下去一直到最后剩下的个位数也还是素数。求出所有小于3000的四位的纯粹素数。

Input

Output

按从小到大的顺序输出若干个纯粹素数,每行一个。

HINT

Source

 1 #include<iostream>
 2 #include<cmath>
 3 using namespace std;
 4 int Isprime(int n)
 5 {
 6     int flag=1;
 7     if(n<=1)
 8     {return 0;}
 9     for(int i=2;i<n;i++)
10     {
11         if(n%i==0)
12         {flag=0;
13         break;}
14     }
15
16     return flag;
17 }
18 bool Ischun_Prime(int n)
19 {
20     int count=0;
21
22     for(int i=4;i>=1;i--)
23     {
24       n%=(int)pow(10,i);
25
26         if(Isprime(n))
27
28         {count++;}
29
30
31     }
32
33     if(count==4)
34     return true;
35     else
36     return false;
37 }
38 int main()
39 {
40     for(int i=1000;i<3000;i++)
41     {
42         if(Ischun_Prime(i))
43         {cout<<i<<endl;}
44     }
45       return 0;
46 }

时间: 2024-12-26 09:08:45

begin.lydsy 入门OJ题库:1104:纯粹合数的相关文章

begin.lydsy 入门OJ题库:1101、1102:那些四位数、那些四位数之二

1101: 那些四位数 Time Limit: 1 Sec  Memory Limit: 128 MBSubmit: 205  Solved: 160[Submit][Status][Web Board] Description 那些4位数,只由1,2,3,4这4个数字组成.请编写程序,输出这些4位数,先小后大,每行一个. Input 无输入 Output 如题 Sample Output 1111 1112 1113 1114 1121 .... .... 4444 HINT Source 1

OnlineJudge 离线题库采集

过段时间要把以前的OJ换掉,我负责VirtualJudge的部分.需要用C与PHP写一个Linux下的VJudge. 在此之前,将以前写给自己学弟学妹用的OJ离线题库的采集程序改进了一下.支持国内一些知名高校的OJ,为之后VJudge的开发练练手,熟悉下各个OJ的结构,免去以后再在LINUX上进行一些繁琐的测试. 题目的采集没有使用任何OJ的API,直接采取从HTML页面采集数据并处理的方式.下载HTTP文件使用的是WinINet函数集,用起来比CURL还方便.正则表达式使用的ATL库里的reg

《算法竞赛入门经典——训练指南》第二章题库

UVa特别题库 UVa网站专门为本书设立的分类题库配合,方便读者提交: http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=442 注意,下面注有"extra"的习题并没有在书中出现,但在上面的特别题库中有,属于附加习题. 基础练习 (Basic Problems) UVa11388 GCD LCM UVa11889 Benefit UVa10943 How do y

RE写作Issue问题题库分析与提纲

RE写作Issue问题题库分析与提纲 GRE写作Issue问题题库分析与提纲 第一类 社会 2. "Competition is ultimately more beneficial than detrimental to society." 归根结底,竞争对于社会是利多弊少. Generally speaking, competition contributes to progress in society. 1.        Generally speaking, competi

猿题库 iOS 客户端架构设计(原文地址:http://gracelancy.com/blog/2016/01/06/ape-ios-arch-design/)

猿题库 iOS 客户端架构设计 序 猿题库是一个拥有数千万用户的创业公司,从2013年题库项目起步到2015年,团队保持了极高的生产效率,使我们的产品完成了五个大版本和数十个小版本的高速迭代.在如此快速的开发过程中,如何保证代码的质量,降低后期维护的成本,以及为项目越来越快的版本迭代速度提供支持,成为了我们关注的重要问题.这篇文章将阐明我们在猿题库 iOS 客户端的架构设计. MVC MVC,Model-View-Controller,我们从这个古老而经典的设计模式入手.采用 MVC 这个架构的

OCP读书笔记(27) - 题库(ExamG)

601.You need to perform a block media recovery on the tools01.dbf data file in the SALES database byusing Recovery Manager (RMAN).Which two are the prerequisites to perform this operation? (Choose two)A. You must configure block change tracking fileB

OCP读书笔记(25) - 题库(ExamE)

401.Which of the following are correct about block media recovery? (Choose all that apply.)A. Physical and logical block corruption is recorded automatically in V$DATABASE_BLOCK_CORRUPTION.B. Logical corruptions are repairable by BMR.C. Physical corr

OCP读书笔记(26) - 题库(ExamF)

501.Note the output of the following query;SQL> SELECT flashback_archieve_name, status FROM dba_flashback_archieve;FLASHBACK_ARCHIEVE_NAME STATUSFLA1You executed the following command to enable Flashback Data Archive on the EXCHANGB_PATE table:ALTER

OCP读书笔记(24) - 题库(ExamD)

301.Which command is used to configure RMAN to perform a compressed backup for every backupexecuted?A. BACKUP AS COMPRESSED BACKUPSET DATABASEB. BACKUP AS COMPRESSED COPY OF DATABASEC. CONFIGURE DEVICE TYPE DISK BACKUP TYPE TO COMPRESSED BACKUPSETD.