| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 8685 | 季洁 | 求小数的某一位 | C++ | Wrong Answer | 0 | 0 MS | 272 KB | 143 | 2020-11-01 19:49:50 |
#include<bits/stdc++.h> using namespace std; int main(){ double a,b,n; cin>>a>>b>>n; a/=b; a*=(int)pow(10,n); cout<<((int)a)%10; }