22 lines
334 B
C++
22 lines
334 B
C++
#include<iostream>
|
|
using namespace std;
|
|
|
|
enum weekday
|
|
{
|
|
s,m,t,w,thu,f,s1
|
|
};
|
|
|
|
int main(int argc, char const *argv[])
|
|
{
|
|
enum weekday wek=s;
|
|
// weekday wek=s;
|
|
for(int i=wek;i!=f;i++)
|
|
{
|
|
cout<<i<<endl;
|
|
cout<<wek+s<<endl;
|
|
cout<<"-------¹þ¹þ-------"<<endl;
|
|
}
|
|
system("pause");
|
|
return 0;
|
|
}
|