提交时间:2022-07-19 12:13:27

运行 ID: 52448

#include<cstdio> #include<ctime> #include<bits/stdc++.h> using namespace std; int main(){ srand(time(0)); int t; cin >> t; while(t--){ int x = rand() % 2; if(x) cout << "yes" << endl; else cout << "no" << endl; } return 0; }