標題:
【競賽】題目二:平日與假日判斷
[打印本頁]
作者:
游東祥
時間:
2013-8-15 00:54
標題:
【競賽】題目二:平日與假日判斷
本帖最後由 游東祥 於 2013-8-15 12:05 編輯
題目二:平日與假日判斷
題目要求:
在畫面上第一行顯示「
請輸入星期(1~7):
」字樣,並停留在第一行等待使用者輸入數字。
輸入數字後,在畫面上第二行顯示判斷結果,星期一至星期五顯示「
平日
」,星期六與星期日顯示「
假日
」。
若輸入範圍不在1~7顯示「
輸入錯誤
」。
P.S. 輸入時用數字代表星期,表示如下:
1=星期一、2=星期二、3=星期三
4=星期四、5=星期五、6=星期六、7=星期日
執行結果:
[attach]741[/attach]
作者:
張瀚仁
時間:
2013-8-15 10:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
string p[]={"平日","平日","平日","平日","平日","假日","假日"};
cout<<"請輸入星期(1~7):";
cin>>a;
if(a>=1 && a<=7)
{
cout<<p[a-1]<<endl;
}else
{
cout<<"輸入錯誤"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
施伯叡
時間:
2013-8-15 11:14
#include <iostream>
#include <cstdlib>
using namespace std;
int main ()
{
int a ;
cout << "請輸入星期(1~7):";
cin >> a ;
if (a < 6)
{
cout << "平日" << endl;
}
else if (a <= 7)
{
cout << "假日" << endl;
}
else if (a >= 8)
{
cout << "輸入錯誤" << endl;
}
system ("pause");
return 0;
}
複製代碼
作者:
張郁庭
時間:
2013-8-15 11:31
回復
1#
游東祥
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入星期(1~7):";
cin>>a;
if (1)
cout<<"平日"<<endl;
if (2)
cout<<"平日"<<endl;
if (3)
cout<<"平日"<<endl;
if (4)
cout<<"平日"<<endl;
if (5)
cout<<"平日"<<endl;
if (6)
cout<<"假日"<<endl;
if (7)
cout<<"假日"<<endl;
else if
cout<<"輸入錯誤"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
柯璟廷
時間:
2013-8-15 11:32
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
cout <<"請輸入日期(1~7)"<<
system("pause");
return 0;
}
複製代碼
作者:
張峻瑋
時間:
2013-8-15 11:32
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x;
cout<<"請輸入星期(1~7):" <<endl;
cin>>x ;
if(x==1,2,3,4,5)
{
cout<<"平日"<<endl;
}
else if (x==6,7)
{
cout<<"假日"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蘇昱安
時間:
2013-8-15 11:32
#include<iostream>
#include<csdlib>
using namespace std;
int maim()
{
int score =0;
int level =0;
cout<<"請輸入您的假日:";
level=score/7;
switch(level)
{
case 7:
case 6:
cout<<"假日"<<endl;
break;
case 5:
cout<<"平日"<<endl;
break;
case 4:
cout<<"平日"<<endl;
break;
case 3:
cout<<"平日"<<endl;
break;
case 2:
cout<<"平日"<<endl;
break;
case 1:
cout<<"平日"<<endl;
break;
default:
cout<<"(輸入錯誤)"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳寧莉
時間:
2013-8-15 11:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入星期(1~7):";
cin>>a;
if(a<=6)
{
cout<<"平日"<<endl;
}
else if(a==7)
{
cout<<"假日"<<endl;
}
else
{
cout<<"輸入錯誤"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
徐義翔
時間:
2013-8-15 11:34
int s;
cout <<"請輸入星期(1~7):"<<endl;
cin >> s;
if(s==1~5);
cout << "平日" <<endl;
if(s=6~7);
cout << "假日" <<endl;
else
cout << "輸入錯誤" <<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡凱益
時間:
2013-8-15 11:34
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int ;
int y;
cout<<"請輸入星期(1~7):";
system("pause;");
return 0;
}
複製代碼
作者:
吳宗桓
時間:
2013-8-15 11:36
#include <iostream> //引入輸出輸入指令
#include <cstdlib> //引入c的語言 的標準函式
using namespace std; //用標準函式庫命名空間
int main()
{
cout<<"請輸入星期(1~7):"<<endl
if(a==1~5);
if(b==6~7
{
cout<<"平日"<<endl;
}
cin>>a
{
cout<<"假日"<<endl;
}
cin>>b
system("pause");
return 0;
}
複製代碼
作者:
張彥承
時間:
2013-8-15 11:38
#include<iostream>
#include<cstdlib>
using namespace std ;
int main()
{
int d;
cout<<"請輸入星期(1~7):";
cin>>d;
if(d==1~5)
{
cout<<"平日"<<endl;
}
else if(d==6~7)
{
cout<<"假日"<< endl;
}
else if(d==大於 7)
{
cout<<"輸入錯誤"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
徐義翔
時間:
2013-8-15 11:40
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int s;
cout <<"請輸入星期(1~7):"<<endl;
cin >> s;
if(s==1~5)
cout << "平日" <<endl;
if(s=6~7)
cout << "假日" <<endl;
if(s=8>)
cout << "輸入錯誤" <<endl;
system("pause");
return 0;
}
複製代碼
作者:
張郁偵
時間:
2013-8-15 11:40
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"請輸入(1~7):";
int a;
cin>>a;
cout<<"1,2,3,4,5"<<"平日"<<endl;
cout<<"6,7"<<"假日"<<endl;
cout<<"其他不是日期"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
周雍程
時間:
2013-8-15 11:41
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int (1~5) ;
int (6~7) ;
cin >> 1;
cin >> 6;
cout << "請輸入星期(1~7)" <<endl;
if
cout << "平日" <<endl;
else if
cout << "假日" <<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2