mirror of
https://github.com/Estom/notes.git
synced 2026-04-01 01:50:32 +08:00
9 lines
114 B
C++
9 lines
114 B
C++
#include<iostream>
|
|
using namespace std;
|
|
|
|
int main(){
|
|
|
|
int a = 0b0010;
|
|
cout<<hex<<a<<endl;
|
|
return 0 ;
|
|
} |