输出7和7的倍数,还有包含7的数字例如(17,27,37...70,71,72,73...)

CVTE网上测评的一个题目。


#include <stdio.h>
int   main()
{
    int i,N;
    scanf("%d",&N); //输入一个整数,不大于3000(题目要求)
for (i = 1; i <= N; i++)  
    {  
        if (i % 7 == 0)

 //输出能被7整除的

printf("%d\n",i); 
        else  
        {  
            int temp = i;  
            while(temp > 0)  
            { 
               if (temp % 10 == 7)  
               {  

   //输出含有7的
                   printf("%d\n",i);  
                   break;  
               }  
               temp = temp / 10;  
            } 
        }  
    }  
}


你可能感兴趣的:(C语言程序设计,含有7和能被7整除的数)