进制转换
This commit is contained in:
parent
1f93e821ed
commit
d545e83aa5
12
day5/d3.cpp
Normal file
12
day5/d3.cpp
Normal file
@ -0,0 +1,12 @@
|
||||
// 进制转换
|
||||
#include <iostream>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int main()
|
||||
{
|
||||
int n1 = 037, n2 = 0x3a;
|
||||
cout << "037 = " << n1 << endl; // 以10进制输出八进制数
|
||||
cout << "0x3a = " << n2 << endl; // 以10进制输出十六进制数
|
||||
return 0;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user