码迷,mamicode.com
首页 > 其他好文 > 详细

bool型数据演示

时间:2019-12-20 13:36:31      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:exe   clu   using   control   tco   val   can   ret   stat   

//this program dispiay te ahlphabet
#include <iostream>
using namespace std;
int main()
{
    bool b;
 b = false;
 cout<<"b is"<<b<<"\n";
 
 b = true;
 cout<<"b is"<<b<<"\n";
 
 //a bool value can control the if statement
 if(b)cout<<"this is executed.\n";
 
 b = false;
 if(b)cout<<"this is not executed.\n";
 
//outcome of a relational operator is a true/false value
cout<<"10>9 is"<<(10>9)<<"\n";
 
 
   return 0;
}

bool型数据演示

标签:exe   clu   using   control   tco   val   can   ret   stat   

原文地址:https://www.cnblogs.com/40630762-/p/12072452.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!