恩位运算x
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了恩位运算x相关的知识,希望对你有一定的参考价值。
#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的主要内容,如果未能解决你的问题,请参考以下文章