提交时间:2025-11-02 18:12:47

运行 ID: 72798

#include<bits/stdc++.h> using namespace std; int main(){ int day,h; cin >> day; h=day%6; if(h==1||h==2||h==3){ cout << "红"; } else if(h==6){ cout<<"白"; } else cout<<"黄"; return 0; }