| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 8349 | 季洁 | 求小数的某一位 | C++ | Wrong Answer | 0 | 0 MS | 252 KB | 139 | 2020-10-31 19:41:00 |
#include<bits/stdc++.h> using namespace std; int main(){ long double a,b,n,sum; cin>>a>>b>>n; cout<<(int)(a/b*((int)pow(10,n))); }