| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 8815 | 季洁 | 求小数的某一位 | C++ | Accepted | 100 | 0 MS | 248 KB | 143 | 2020-11-04 20:38:52 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,n,s; cin>>a>>b>>n; for(int i=0;i<=n;i++) s=a/b,a=a%b*10; cout<<s; }