- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- int i,j;
- cout<<"請輸入該月的天數(28~31):";
- cin>>i;
- cout<<"請輸入該月的一號若在第一週的第幾天(1~7):";
- cin>>j;
- cout<<endl;
- cout<<"日 一 二 三 四 五 六"<<endl;
- int d=1,w=1,m=1;
- while(d<=i)
- {
- if(w<=7)
- {
- while(m<=j-1)
- {
- cout<<" "<<"\t";
- m=m+1;
- w=w+1;
- }
- cout<<d<<"\t";
- d=d+1;
- w=w+1;
- }
- else
- {
- cout<<endl;
- w=1;
- }
- }
- cout<<endl;
- system("pause");
- return 0;
- }
複製代碼 |