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

恩位运算x

时间:2017-04-07 23:38:44      阅读:294      评论:0      收藏:0      [点我收藏+]

标签:std   style   include   ace   class   ios   运算   return   space   

#include<iostream>
#include<cstdio>

using namespace std;

int main()
{
    int q;
    cin>>q;
    int w=q<<1;//等价于q*2
    int e=1<<q;//等价于2的q次方
    int r=q>>1;//等价于q/2
    int t=1>>q;//等价于0
    cout<<w<<" "<<e<<" "<<r<<" "<<t;
    return 0;
 } 

 

恩位运算x

标签:std   style   include   ace   class   ios   运算   return   space   

原文地址:http://www.cnblogs.com/zxqxwnngztxx/p/6680133.html

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