Problem 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.
Write a program to find and print the nth element in this sequence
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.
每个数字,乘以2、3、5、7都会产生一个新的num
#include<cstdio>
int min(const int a,const int b,const int c,const int d)
{
int m=a;
if(m>b) m=b;
if(m>c) m=c;
if(m>d) m=d;
return m;
}
int num[5845]={0,1};
int main()
{
int c2=1,c3=1,c5=1,c7=1;
for(int i=2;i<=5842;i++){
num[i]=min(2*num[c2],3*num[c3],5*num[c5],7*num[c7]);
if(num[i]==2*num[c2]) c2++;
if(num[i]==3*num[c3]) c3++;
if(num[i]==5*num[c5]) c5++;
if(num[i]==7*num[c7]) c7++;
}
int n;char* str[]={"th","st","nd","rd","th","th","th","th","th","th"};
while(scanf("%d",&n) && n>0){
int xh=n%10;
if(n%100==11 || n%100==12 || n%100==13) xh=0;
printf("The %d%s humble number is %d.\n",n,str[xh],num[n]);
}
}
本文介绍了一种特殊的数列——谦卑数(Humble Numbers),这些数仅由2、3、5、7这四个质数相乘构成。文章通过示例详细解释了如何生成谦卑数,并提供了一个高效的算法实现来找出数列中的特定元素。对于喜欢数学和编程挑战的读者来说,这是一个很好的实践案例。
613

被折叠的 条评论
为什么被折叠?



