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