#include <iostream>
using namespace std;
int main(int argc, char** argv) {
    for(int i=1;i<=20;i++){
        if(i%7==0||i%10==7){
            cout<<"pass"<<endl;
        }else{
            cout<<i<<endl;
        }
    }
    system("pause");
    return 0;
}

 

posted on 2023-07-01 08:31  爱吃泡面的皮卡  阅读(71)  评论(0编辑  收藏  举报