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