当前位置:网站首页>Absolute primes (C language)
Absolute primes (C language)
2022-07-06 21:16:00 【Bamboo pride】
problem : Write a program , Enter two positive integers , Output absolute primes between two positive integers ;
Operation diagram :
Source code :
#include <stdio.h>
int main()
{
int a,b;
int i,x,y,z;
int h=0,v;
scanf("%d %d",&a,&b);
for(i=a;i<=b;i++)
{
int j;
for(j=2;j<i;j++)
{
if(i%j==0)
{
break;
}
}
if(j==i)
{
i=j;
x=i%10;
y=(i%100)/10;
z=i/100;
if(z==0)
{
h=x*10+y;
}
if(z>0)
{
h=x*100+y*10+z;
}
h=h;
for(v=2;v<h;v++)
{
if(h%v==0)
{
break;
}
}
if(v==h)
{
printf("%d\n",i);
}
}
}
return 0;
}
边栏推荐
- Pat 1085 perfect sequence (25 points) perfect sequence
- What is the difference between procedural SQL and C language in defining variables
- js通过数组内容来获取数组下标
- Web开发小妙招:巧用ThreadLocal规避层层传值
- Forward maximum matching method
- 拼多多败诉,砍价始终差0.9%一案宣判;微信内测同一手机号可注册两个账号功能;2022年度菲尔兹奖公布|极客头条
- Vim 基本配置和经常使用的命令
- 3D人脸重建:从基础知识到识别/重建方法!
- 967- letter combination of telephone number
- 15 millions d'employés sont faciles à gérer et la base de données native du cloud gaussdb rend le Bureau des RH plus efficace
猜你喜欢
2022菲尔兹奖揭晓!首位韩裔许埈珥上榜,四位80后得奖,乌克兰女数学家成史上唯二获奖女性
1500萬員工輕松管理,雲原生數據庫GaussDB讓HR辦公更高效
HMS Core 机器学习服务打造同传翻译新“声”态,AI让国际交流更顺畅
[MySQL] trigger
硬件开发笔记(十): 硬件开发基本流程,制作一个USB转RS232的模块(九):创建CH340G/MAX232封装库sop-16并关联原理图元器件
What is the problem with the SQL group by statement
Introduction to the use of SAP Fiori application index tool and SAP Fiori tools
新型数据库、多维表格平台盘点 Notion、FlowUs、Airtable、SeaTable、维格表 Vika、飞书多维表格、黑帕云、织信 Informat、语雀
No Yum source to install SPuG monitoring
Data Lake (VIII): Iceberg data storage format
随机推荐
c#使用oracle存储过程获取结果集实例
每个程序员必须掌握的常用英语词汇(建议收藏)
JS get array subscript through array content
In JS, string and array are converted to each other (I) -- the method of converting string into array
ACdreamoj1110(多重背包)
数据湖(八):Iceberg数据存储格式
Three schemes of SVM to realize multi classification
KDD 2022 | realize unified conversational recommendation through knowledge enhanced prompt learning
嵌入式开发的7大原罪
【Redis设计与实现】第一部分 :Redis数据结构和对象 总结
Yyds dry goods count re comb this of arrow function
1500万员工轻松管理,云原生数据库GaussDB让HR办公更高效
Select data Column subset in table R [duplicate] - select subset of columns in data table R [duplicate]
js中,字符串和数组互转(二)——数组转为字符串的方法
No Yum source to install SPuG monitoring
Le langage r visualise les relations entre plus de deux variables de classification (catégories), crée des plots Mosaiques en utilisant la fonction Mosaic dans le paquet VCD, et visualise les relation
How to implement common frameworks
[redis design and implementation] part I: summary of redis data structure and objects
OneNote in-depth evaluation: using resources, plug-ins, templates
[MySQL] basic use of cursor