题解 3013: 求小数的某一位

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

筛选

Yu(正确的做法)求小数的某一位

摘要:# 解题思路 **很多题解都是错误的** 首先这是循环题,很多题解不使用循环,也没有算法。 如果数据按题目给的量级,那些题解的方法不可能过,long double没有那么大的范围。 我们应该把……

求小数的某一位

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {……

3013: 求小数的某一位

摘要:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    int a,b,n;//定义a,b,n,    cin>>a>>b>>n……

求小数的某一位

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

求小数的某一位

摘要:解题思路:#include <bits/stdc++.h>using namespace std;int main(){    int a,b,n,c;    cin>>a>>b>>n;    for……

aaaaaaaaaaaaaaaaaaaa

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

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int n,i,t;    double a, b,c;    scanf("%lf %lf %d", &……

求小数的末尾3位

摘要:需要明确一点就是:无论a的多少次幂,都是末尾的数先乘以a再考虑向前进位,因此本题直接考虑每次幂的末尾3位,将每次的末尾3位乘以a循环进行b次#include<stdio.h> int main(vo……