mirror of
https://github.com/Estom/notes.git
synced 2026-05-11 11:06:25 +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 ;
|
|
} |