標題:
月曆產生器(一)
[打印本頁]
作者:
王瑞喻
時間:
2020-6-12 11:52
標題:
月曆產生器(一)
本帖最後由 王瑞喻 於 2020-6-13 17:04 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
system("cls");
int days, start;
cout<<"請輸入該月的天數(28~31): ";
cin>>days;
cout<<"請輸入該月的一號落在第一週的第幾天(1~7): ";
cin>>start;
cout<<endl<<"日\t一\t二\t三\t四\t五\t六"<<endl;
for(int i=1; i<=days+(start-1); i++)
{
if(i<start)
{
cout<<" \t";
}
else
{
cout<<i-(start-1)<<"\t";
}
if(i%7==0)
cout<<endl;
}
cout<<endl<<endl;
system("pause");
goto re;
return 0;
}
複製代碼
作者:
鐘彥博
時間:
2020-6-13 17:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
system("cls");
int a,b;
cout<<"請輸入該月的天數(28~31):";
cin>>a;
cout<<"請輸入該月的一號落在第一周的第幾天:";
cin>>b;
cout<<endl;
cout<<"日\t一\t二\t三\t四\t五\t六"<<endl;
for(int j=1;j<=a+b-1;j++)
{
if(j<b)
{
cout<<" \t";
}else
{
cout<<j-(b-1)<<" \t";
}
if(j%7==0)
{
cout<<endl;
}
}
cout<<endl;
cout<<endl;
system("pause");
goto re;
system("pause");
return 0;
}
複製代碼
作者:
呂尚霖
時間:
2020-6-13 17:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
system("cls");
int days, start;
cout<<"請輸入該月的天數(28~31): ";
cin>>days;
cout<<"請輸入該月的一號落在第一週的第幾天(1~7): ";
cin>>start;
cout<<endl<<"日\t一\t二\t三\t四\t五\t六"<<endl;
for(int i=1; i<=days+(start-1); i++)
{
if(i<start)
{
cout<<" \t";
}
else
{
cout<<i-(start-1)<<"\t";
}
if(i%7==0)
cout<<endl;
}
cout<<endl<<endl;
system("pause");
goto re;
return 0;
}
複製代碼
作者:
謝承志
時間:
2020-6-13 17:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int day,start;
cout<<"請輸入該月的天數(28~31): ";
cin>>day;
cout<<"請輸入該月的一號落在第一週的第幾天(1~7): ";
cin>>start;
cout<<endl<<"日\t一\t二\t三\t四\t五\t六"<<endl;
for(int i=1;i<=day+(start-1);i++)
{
if(i<start)
{
cout<< '\t';
}
else
{
cout<<i-(start-1)<<'\t';
}
if(i%7==0)
cout<<endl;
}
cout<<endl<<endl;;
system("pause");
return 0;
}
複製代碼
作者:
董定宇
時間:
2020-7-4 15:23
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
system("cls");
int days,start;
cout <<"輸入該月有幾天(28-31)";
cin>>days;
cout<<endl<<"請輸入該月的一號落在第一週的第幾天(1~7): ";
cin>>start;
cout<<endl<<"日\t一\t二\t三\t四\t五\t六"<<endl;
for(int i=1; i<=days+(start-1); i++)
{
if(i<start)
{
cout<<" \t";
}
else
{
cout<<i-(start-1)<<"\t";
}
if(i%7==0)
cout<<endl;
}
cout<<endl<<endl;
system("pause");
goto re;
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2