题解 3013: 求小数的某一位

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

直接数学方法进行计算

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double a,b,n,r,p,m,q; scanf("%lf %lf %lf……

3013: 求小数的某一位

摘要:解题思路:注意事项:这里的cout要在外面写a的值可以改变参考代码:#include <bits/stdc++.h>using namespace std;int main(){    long lo……

求小数的某一位

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){   int a,b,n,c;   cin>>a>>b>>n……