TOJ 523 發表於 2021-03-23 分類於 TOJ 閱讀次數: TOJ 523題目https://toj.tfcis.org/oj/pro/523/ 給一個數 $x$ ,求他的十位數字 想法先除以 $10$ 再模 $10$ 得解 Code12345678910//By Koios1143#include<iostream> using namespace std;int main(){ int x; cin>>x; x/=10; cout<<x%10<<"\n"; return 0;} 複雜度分析總時間複雜度為 $O(1)$