TOJ 523

TOJ 523

題目

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

給一個數 $x$ ,求他的十位數字

想法

先除以 $10$ 再模 $10$ 得解

Code

1
2
3
4
5
6
7
8
9
10
//By Koios1143
#include<iostream>
using namespace std;
int main(){
int x;
cin>>x;
x/=10;
cout<<x%10<<"\n";
return 0;
}

複雜度分析

總時間複雜度為 $O(1)$