最新下载
热门教程
- 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;
}
相关文章
- 巫师3刷钱技巧 巫师3如何快速刷钱和经验 08-09
- 航海王壮志雄心阵容怎么搭配-航海王壮志雄心新手阵容分享 08-09
- 《希望OL》饕客二转职业选择-食神还是美食家? 08-09
- 无限暖暖套袖婆婆在哪-无限暖暖套袖婆婆位置 08-09
- 《夺宝奇兵古老之圈》密码速览 夺宝奇兵梵蒂冈城宝箱密码答案汇总 08-09
- 《妄想山海》昆吾剑图谱获取方式-妄想山海昆吾剑图谱怎么获得 08-09