逢7必过

Posted on 2023-07-01 08:29  封魔NJ  阅读(35)  评论(0编辑  收藏  举报

#include <iostream>
using namespace std;
int main() {
for(int q=1;q<=20;q++){
if(q%7==0||q%10==7){
cout<<"过"<<endl;
}else{
cout<<q<<endl;
}
}



system("pause");
return 0;
}