一位bit的跳动

tech2023-01-10  102

#include<iostream> using namespace std; int main() { int a=0x56000064; int n=3; while(n--) { a=a&0xeff|0x200; for(int i=31;i>=0;i--) { cout<<(a>>i&1); if(i%4==0) cout<<" "; }cout<<endl; a=a&0xdff|0x100; for(int i=31;i>=0;i--) { cout<<(a>>i&1); if(i%4==0) cout<<" "; }cout<<endl<<endl; } return 0; }

Run:

0000 0000 0000 0000 0000 0010 0110 0100 0000 0000 0000 0000 0000 0001 0110 0100 0000 0000 0000 0000 0000 0010 0110 0100 0000 0000 0000 0000 0000 0001 0110 0100 0000 0000 0000 0000 0000 0010 0110 0100 0000 0000 0000 0000 0000 0001 0110 0100
最新回复(0)