码迷,mamicode.com
首页 > 编程语言 > 详细

c++程序—布尔值

时间:2020-02-25 09:24:40      阅读:47      评论:0      收藏:0      [点我收藏+]

标签:span   bool   ring   return   bsp   ret   mes   空间   namespace   

#include<iostream>
using namespace std;
#include<string>

int main()
{
    //创建bool数据类型
    bool flag = true;
    cout << flag << endl;
    flag = false;
    cout << flag << endl;
    //bool所占内存空间
    cout << sizeof(bool) << endl;
    system("pause");
    return 0;

}

 

c++程序—布尔值

标签:span   bool   ring   return   bsp   ret   mes   空间   namespace   

原文地址:https://www.cnblogs.com/hackerteen/p/12359989.html

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