1. 程式人生 > >藍橋杯 演算法提高 ADV-97 十進位制數轉八進位制數

藍橋杯 演算法提高 ADV-97 十進位制數轉八進位制數

演算法提高 十進位制數轉八進位制數
時間限制:1.0s 記憶體限制:512.0MB
編寫函式,其功能為把一個十進位制數轉換為其對應的八進位制數。程式讀入一個十進位制數,呼叫該函式實現數制轉換後,輸出對應的八進位制數。
樣例輸入
9274
樣例輸出
22072
樣例輸入
18
樣例輸出
22

分析:作死級偷懶,( ̄▽ ̄)~*23333……

#include <iostream>
#include <iomanip>
using namespace std;

int main()
{
	int num;
	
	cin >> num;
	cout << oct << num;
	
	return 0;
}