標題:
條件運算子
[打印本頁]
作者:
tonyh
時間:
2016-5-21 11:15
標題:
條件運算子
本帖最後由 tonyh 於 2016-5-21 11:33 編輯
條件運算子通常運用在需要
二選一
的情況下,提供了一個更精簡快速的方法來撰寫條件式的陳述,可用來取代if-else陳述。
它的語法是:
條件判斷式 ? true陳述 : false陳述;
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float age;
string str="";
re:
cout<<"請輸入年齡: ";
cin>>age;
str=age>=18?"可以考駕照了":"未滿18";
cout<<str<<endl<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
高允懋
時間:
2016-5-21 11:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
string str="";
float age;
cout<<"請輸入年齡:";
cin>>age;
str=age>=18?"可考駕照":"未滿十八歲";
cout<<str<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
任立宇
時間:
2016-5-21 11:30
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int age ;
string str="";
cout<<"年齡: ";
cin>>age;
str=age>=18?"可考駕照":"未滿18";
cout<<str<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
張孟軒
時間:
2016-5-21 11:30
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int age;
string str="";
re:
cout<<"請輸入年齡: ";
cin>>age;
str=age>=18?"可以考駕照了":"未滿18";
cout<<str<<endl<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
黃茂勛
時間:
2016-5-21 11:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float age;
string str="";
re:
cout<<"請輸入年齡: ";
cin>>age;
str=age>=18?"可以考駕照了":"未滿18";
cout<<str<<endl<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
康湍榆
時間:
2016-5-21 11:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
float age;
string str="";
cout<<"請輸入年齡: ";
cin>>age;
str=age>=18?"可以考駕照了!!":"未滿18歲";
cout<<str<<endl<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
陸長辰
時間:
2016-5-21 11:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float age;
string str="";
cout<<"請輸入年齡";
cin>>age;
str=age>=18?"可考駕照了":"未滿18";
cout<<str<<endl<<endl;
system("pause");
return 0;
}
複製代碼
作者:
方宥鈞
時間:
2016-5-21 11:33
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
string str="";
float age;
cout<<"請輸入年齡:";
cin>>age;
str=age>=18?"可以考駕照了!!!!!!!!!":"未滿十八歲!屁......沒事";
cout<<str<<endl<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
陳泓瑜
時間:
2016-5-21 11:33
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
string str="";
float age;
cout<<"請輸入年齡:";
cin>>age;
str=age>=18?"可考駕照":"未滿18歲";
cout<<str<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2