最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
asp.net C# bool布尔型类型用法
时间:2022-06-25 08:27:58 编辑:袖梨 来源:一聚教程网
asp教程.net bool逻辑用法
#include
using namespace std;
int main() {
bool b;
b = false;
cout << "b is " << b << "n";
b = true;
cout << "b is " << b << "n";
if(b) cout << "This is executed.n";
b = false;
if(b) cout << "This is not executed.n";
return 0;
}
实例2
#include
using namespace std;
int main() {
bool b;
b = false;
cout << "b is " << b << "n";
b = true;
cout << "b is " << b << "n";
if(b) cout << "This is executed.n";
b = false;
if(b) cout << "This is not executed.n";
return 0;
}
b is 0
b is 1
This is executed.
测试一下bool 长度
#include
int main()
{
using std::cout;
cout << "The size of a bool is:" << sizeof(bool) << " bytes.n";
return 0;
}
实例4
#include
using namespace std;
int main(void)
{
int age;
char choice;
bool citizen;
cout << "Enter your age: ";
cin >> age;
cout << "Are you a citizen (Y/N): ";
cin >> choice;
if (choice == 'Y')
citizen = true;
else
citizen = false;
if (age >= 18 && citizen == true)
cout << "You are eligible to vote";
else
cout << "You are not eligible to vote";
return 0;
}
相关文章
- 《龙息神寂》平民好用的紫卡/蓝卡盘点 06-08
- 虚拟币交易app排行 交易所app 06-08
- 《春秋玄奇》司马懿平民奇策搭配攻略 06-08
- 《燕云十六声》河西7个探索成就获取方法 06-08
- 《桃源深处有人家》天刀联动隐藏成就获取攻略 06-08
- 数字货币交易平台前十 十大数字货币交易平台app2025 06-08