TOJ 528 發表於 2021-03-23 分類於 TOJ 閱讀次數: TOJ 528題目https://toj.tfcis.org/oj/pro/528/ 輸出 $abs(n)$ Code12345678910//By Koios1143#include<iostream> using namespace std;int main(){ int n; cin>>n; if(n<0) cout<<-n<<"\n"; else cout<<n<<"\n"; return 0;} 複雜度分析總時間複雜度為 $O(1)$