Files
notes_estom/C++/C++基础/11.cpp
2021-03-28 00:14:24 +08:00

9 lines
114 B
C++

#include<iostream>
using namespace std;
int main(){
int a = 0b0010;
cout<<hex<<a<<endl;
return 0 ;
}