欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

P1100 高低位交换

程序员文章站 2022-07-12 16:15:00
...

题目:
题目链接:

题解:
位运算

#include <bits/stdc++.h>
using namespace std;
int main()
{
    long long x;
    cin>>x;
    cout<<((x&0x0000ffff)<<16|(x&0xffff0000)>>16)<<endl;
    return 0;
}