解题思路:
注意事项:
参考代码:
#include<iostream>
using namespace std;
const int M=500000;
int a[M],count;
void Lucky_number(int *s, int t, int n)
{
if(t==n) return ;
for(int i=1; ;i++)
{
int m=i*s[t];
if(m>n) break;
s[m-1]=0;
}
count=0;
for(int i=0; i<n; i++)
{
if(s[i]!=0)
s[count++]=s[i];
}
Lucky_number(s, t+1, count);
}
int main()
{
int M,N;
while(cin>>M>>N)
{
int n=0;
while((2*n+1) < N)
{
a[n]=2*n+1;
n++;
}
Lucky_number(a,1,n);
int t1=0;
for(int i=0; i<count; i++)
{
if(a[i]>M && a[i]<N)
t1++;
}
cout<<t1<<endl;
}
return 0;
}
0.0分
32 人评分
C语言训练-计算t=1+1/2+1/3+...+1/n (C语言代码)浏览:539 |
C语言程序设计教程(第三版)课后习题7.4 (C语言代码)浏览:595 |
C语言程序设计教程(第三版)课后习题7.2 (C语言代码)浏览:1178 |
数组输出 (C语言代码)浏览:813 |
多输入输出练习1 (C语言代码)浏览:1220 |
printf基础练习2 (C语言代码)浏览:322 |
C语言程序设计教程(第三版)课后习题10.3 (C语言代码)浏览:567 |
字符逆序 (C语言代码)浏览:706 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:624 |
回文数字 (C语言代码)浏览:2540 |