摘要:
实例简单的输入今天的代码#include<iostream>using namespace std;enum week{ sun, mon, tue, wed, thu, fri, sat, };int main() {week yesterday,tomorrow,today,day;int code;cout<<"0 sun,1 mon,2 tue,3 wed,4 thu,5 fri,6 sat"<<endl;cout<<"请输入今天的代码:"<<endl; cin>>code;
阅读全文