七-簡単な数学の問題を叩く

625 ワード

/*
 *Copyright(c)2014,         
 *All rights reserved.
 *    :test.cpp
 *  :   
 *    :2014  11  27 
 *   :v1.0
 *
 *    :       30000  ,
               7             
            (  7   ,7   。。。)
 *    :
 *    :
 */
#include <iostream>
using namespace std;
int main()
{
    int t,N;
    cout<<"        30000  ";
    cin>>N;
    if(N<30000)
    {
        for(int i=1; i<N; ++i)
        {
            t=(i%7==0)+(i%10==7)+((i/10)%10==7)+((i/100)%10==7);
            if(t>=1)cout<<i<<'
'; } } return 0; }

実行結果: