博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
幽默数
阅读量:4985 次
发布时间:2019-06-12

本文共 2322 字,大约阅读时间需要 7 分钟。

Description

A number whose only prime factors are 2,3,5 or 7 is called a humble number. The sequence 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15, 16, 18, 20, 21, 24, 25, 27, ... shows the first 20 humble numbers.
//
幽默数, 数字的质数只包括2,3,5,7;
Write a program to find and print the nth element in this sequence
 

Input

The input consists of one or more test cases. Each test case consists of one integer n with 1 <= n <= 5842. Input is terminated by a value of zero (0) for n.
 

Output

For each test case, print one line saying "The nth humble number is number.". Depending on the value of n, the correct suffix "st", "nd", "rd", or "th" for the ordinal number nth has to be used like it is shown in the sample output.
 

Sample Input

1 2 3 4 11 12 13 21 22 23 100 1000 5842 0
 

Sample Output

The 1st humble number is 1.
The 2nd humble number is 2.
The 3rd humble number is 3.
The 4th humble number is 4.
The 11th humble number is 12.
The 12th humble number is 14.
The 13th humble number is 15.
The 21st humble number is 28.
The 22nd humble number is 30.
The 23rd humble number is 32.
The 100th humble number is 450.
The 1000th humble number is 385875.
The 5842nd humble number is 2000000000.
         
 
1 #include
2 #include
3 #include
4 int main() 5 { 6 int x1, x2, x3, x4; 7 int ac[6000], i, n, j, k, a, b, c, d, min; 8 ac[1] = 1; 9 a = b = c = d = 1;10 for(i = 2; i < 5900; i++)11 {12 x1 = ac[a] * 2;13 x2 = ac[b] * 3;14 x3 = ac[c] * 5;15 x4 = ac[d] * 7;16 min = x1;17 if(min > x2)min = x2;18 if(min > x3)min = x3;19 if(min > x4)min = x4;20 ac[i] = min;21 if(min == x1)a++;22 if(min == x2)b++;23 if(min == x3)c++;24 if(min == x4)d++;25 }26 while(scanf("%d", &n), n)27 {28 if(n%10 == 1 && n%100 != 11)29 printf("The %dst humble number is %d.\n", n, ac[n]);30 else if(n%10 == 2 && n%100 != 12)31 printf("The %dnd humble number is %d.\n", n, ac[n]);32 else if(n%10 == 3 && n%100 != 13)33 printf("The %drd humble number is %d.\n", n, ac[n]);34 else35 printf("The %dth humble number is %d.\n", n, ac[n]);36 }37 return 0;38 }

 

转载于:https://www.cnblogs.com/yishilin/p/4396068.html

你可能感兴趣的文章
ssh框架添加时添加不到数据库问题
查看>>
解决AR中Receivable Activities 运行不了的问题
查看>>
SQL SERVER 如何处理带字母的自增列--【叶子】
查看>>
使用DocFX生成文档
查看>>
AssemblyInfo.cs文件的作用
查看>>
android之PackageManager简单介绍
查看>>
GitLab备份与恢复
查看>>
20155307《网络对抗》免杀原理与实践
查看>>
《Android开发卷——自定义日期选择器(三)》
查看>>
游里工夫独造微一一小平邦彦传
查看>>
HTML5 JSON ( tuple => Object => JSON => Object=> Elements_of_tuple )
查看>>
#2006 - MySQL server has gone away 问题解决方法 (全) (转)
查看>>
php学习笔记4--php中的变量作用域
查看>>
D1格式是720*576还是704*576 分类: 生活百科 ...
查看>>
V4L2驱动的移植与应用(三) 分类: arm-linux-Ubunt...
查看>>
服务级后门自己做——创建服务 分类: VC++ ...
查看>>
push本地代码到github发生错误的解决办法
查看>>
设置遮罩层
查看>>
Catalyst 3850 升级-1
查看>>
static
查看>>