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

bitset使用

时间:2014-09-02 22:48:15      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   使用   div   sp   log   

17.10使用序列1、2、3、5、8、13、21初始化一个bitset,将这些位置置位。对另一个bitset进行默认初始化,并编写一小段程序将其恰当的位置位。

#include<iostream>
#include<bitset>
using namespace std;
int main()
{
    bitset<32> bits("100000001000010010111");
    bitset<32> bit;
    bit.set(1);
    bit.set(2);
    bit.set(3);
    bit.set(5);
    bit.set(8);
    bit.set(13);
    bit.set(21);
}

 

bitset使用

标签:style   blog   color   os   io   使用   div   sp   log   

原文地址:http://www.cnblogs.com/wuchanming/p/3952423.html

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