TOJ 526 發表於 2021-03-23 分類於 TOJ 閱讀次數: TOJ 526題目https://toj.tfcis.org/oj/pro/526/ 輸入一串數字,輸出數字的相反 例如: 521 輸出 125 不過當前綴是 0 時不需要顯示 程式碼1234567891011121314//By Koios1143#include<iostream> using namespace std;int main(){ int n,m=0; cin>>n; while(n){ m*=10; m+=(n%10); n/=10; } cout<<m<<'\n'; return 0;} 複雜度分析總時間複雜度為 $O(1+log_{10}{n})$