TOJ 531

TOJ 531

題目

https://toj.tfcis.org/oj/pro/531/

判斷 $m>n$ 是否成立

Code

1
2
3
4
5
6
7
8
9
10
//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)$