敲7

320 词

题目描述

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

输入

一个整数$N$。
且$N≤3000$

输出

从小到大排列的不大于N的与7有关的数字,每行一个。

1
2
3
4
5
6
7
8
9
10
11
12
13
#include<bits/stdc++.h>
using namespace std;
int main(){
int n,i=1;
cin>>n;
while(i<=n){
if(i/10==7i%7==0i%10==7i/100==7i%1000==7){
cout<<i<<endl;
}
i++;
}
return 0;
}