返回列表 發帖

月曆產生器(一)

本帖最後由 王瑞喻 於 2020-6-13 17:04 編輯

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     system("cls");
  8.     int days, start;
  9.     cout<<"請輸入該月的天數(28~31): ";
  10.     cin>>days;
  11.     cout<<"請輸入該月的一號落在第一週的第幾天(1~7): ";
  12.     cin>>start;
  13.     cout<<endl<<"日\t一\t二\t三\t四\t五\t六"<<endl;
  14.     for(int i=1; i<=days+(start-1); i++)
  15.     {
  16.          if(i<start)
  17.          {
  18.              cout<<" \t";
  19.          }
  20.          else
  21.          {
  22.              cout<<i-(start-1)<<"\t";
  23.          }
  24.          if(i%7==0)
  25.              cout<<endl;
  26.     }
  27.     cout<<endl<<endl;
  28.     system("pause");
  29.     goto re;
  30.     return 0;   
  31. }
複製代碼
Su Wa

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     system("cls");
  8.     int a,b;
  9.     cout<<"請輸入該月的天數(28~31):";
  10.     cin>>a;
  11.     cout<<"請輸入該月的一號落在第一周的第幾天:";
  12.     cin>>b;
  13.     cout<<endl;
  14.     cout<<"日\t一\t二\t三\t四\t五\t六"<<endl;
  15.     for(int j=1;j<=a+b-1;j++)
  16.     {
  17.     if(j<b)
  18.     {
  19.     cout<<" \t";
  20.     }else
  21.     {
  22.          cout<<j-(b-1)<<" \t";
  23.     }
  24.     if(j%7==0)
  25.     {
  26.     cout<<endl;
  27.     }
  28.     }
  29.     cout<<endl;
  30.     cout<<endl;
  31.     system("pause");
  32.     goto re;
  33.     system("pause");
  34.     return 0;
  35. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     re:
  7.     system("cls");
  8.     int days, start;
  9.     cout<<"請輸入該月的天數(28~31): ";
  10.     cin>>days;
  11.     cout<<"請輸入該月的一號落在第一週的第幾天(1~7): ";
  12.     cin>>start;
  13.     cout<<endl<<"日\t一\t二\t三\t四\t五\t六"<<endl;
  14.     for(int i=1; i<=days+(start-1); i++)
  15.     {
  16.          if(i<start)
  17.          {
  18.              cout<<" \t";
  19.          }
  20.          else
  21.          {
  22.              cout<<i-(start-1)<<"\t";
  23.          }
  24.          if(i%7==0)
  25.              cout<<endl;
  26.     }
  27.     cout<<endl<<endl;
  28.     system("pause");
  29.     goto re;
  30.     return 0;   
  31. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int day,start;
  7.     cout<<"請輸入該月的天數(28~31): ";
  8.     cin>>day;
  9.     cout<<"請輸入該月的一號落在第一週的第幾天(1~7): ";
  10.     cin>>start;
  11.    
  12.     cout<<endl<<"日\t一\t二\t三\t四\t五\t六"<<endl;
  13.         
  14.     for(int i=1;i<=day+(start-1);i++)
  15.     {
  16.         if(i<start)
  17.         {
  18.             cout<< '\t';        
  19.         }     
  20.         else
  21.         {
  22.             cout<<i-(start-1)<<'\t';  
  23.         }
  24.         if(i%7==0)
  25.             cout<<endl;
  26.     }                    
  27.     cout<<endl<<endl;;   
  28.     system("pause");   
  29.     return 0;
  30. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.   re:
  7.   system("cls");
  8.   int days,start;
  9.   cout <<"輸入該月有幾天(28-31)";
  10.   cin>>days;
  11.   cout<<endl<<"請輸入該月的一號落在第一週的第幾天(1~7): ";
  12.   cin>>start;
  13.   cout<<endl<<"日\t一\t二\t三\t四\t五\t六"<<endl;
  14.    for(int i=1; i<=days+(start-1); i++)
  15.   {
  16.       if(i<start)
  17.       {
  18.          cout<<" \t";
  19.       }
  20.       else
  21.       {
  22.           cout<<i-(start-1)<<"\t";
  23.       }
  24.       if(i%7==0)
  25.       cout<<endl;
  26.   }
  27.   cout<<endl<<endl;
  28.   system("pause");
  29.   goto re;
  30.   return 0;
  31. }
複製代碼

TOP

返回列表