Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
45621 | liusiyu | 求十位数字-2023年stema | C++ | 运行出错 | 3 MS | 236 KB | 216 | 2024-04-18 21:53:45 |
#include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; int ws; int m=n; while(m!=0){ m/=10; ws++; } int s=1; for(int i=0;i<ws-2;i++) s*=10; cout<<n/s%10; return 0; }