標題:
月曆產生器(一)
[打印本頁]
作者:
王瑞喻
時間:
2020-7-2 16:03
標題:
月曆產生器(一)
作者:
駱顗安
時間:
2020-7-2 16:28
#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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2