Run ID:97486

提交时间:2024-11-16 09:28:34

#include<bits/stdc++.h> using namespace std; int main(){ int b; for( b=1;b<=20;b++){ if(b%7==0||b%10==7){ cout<<"过"<<endl; } else{ cout<<b<<endl; } } return 0; }