標題:
[家教作業2022/5/30] 0~20數字判斷練習
[打印本頁]
作者:
鄭繼威
時間:
2022-5-30 20:34
標題:
[家教作業2022/5/30] 0~20數字判斷練習
本帖最後由 鄭繼威 於 2022-6-13 20:14 編輯
[attach]13149[/attach]
設計一個輸入數字可以判斷範圍:
0~10
11~20
0~20以外
本帖隱藏的內容需要回復才可以瀏覽
作者:
林劭澧
時間:
2022-6-2 16:51
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n;
cout<<"請輸入數字: ";
cin>>n;
if(n<=10 && n>=0)
cout<<"0~10之間"<<endl;
else if(n<=20 && n>=10)
cout<<"10~20之間"<<endl;
else
cout<<"0~20以外"<<endl;
system("pause")
return 0;
}
複製代碼
作者:
林劭澧
時間:
2022-6-2 16:53
我不知道是不是對的(我是想試試看)
作者:
林劭杰
時間:
2022-6-2 18:24
老師我不知道我的程式是不是對的。
作者:
林劭杰
時間:
2022-6-2 18:29
老師,我不知道我的程式是不是對的°
作者:
鄭繼威
時間:
2022-6-6 19:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int number; //宣告變數存使用者輸入的數字
cout<<"請輸入數字:"; //cout輸出
cin>>number; //取得使用者輸入的數字
//開始判斷
// 0~10
if(number>=0 and number<=10){
cout<<"0~10"<<endl;
}
// 11~20
else if(number>=11 and number<=20){
cout<<"11~20"<<endl;
}
//21~30
else if(number>=21 && number<=30){
cout<<"21~30"<<endl;
}
else{
cout<<"0~30以外"<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2