#42840: C++簡單解


chenwei980503@gmail.com (陳維(Z))

學校 : 新北市立北大高級中學
編號 : 278351
來源 : [49.216.177.159]
最後登入時間 :
2024-10-28 21:05:07
d635. 幸運777?luck -- jack1 | From: [101.12.162.47] | 發表日期 : 2024-10-07 21:34

#include<bits/stdc++.h>
using namespace std;
int main() {
    ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
    int n;
    while (cin>>n) {
        if (n<0) {
            cout<<"-1"<<'\n';
            break;
        }
        cout<<oct<<n<<endl;
    }
    return 0;
}

 
ZeroJudge Forum