TOJ 528

TOJ 528

題目

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

輸出 $abs(n)$

Code

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