题解 3015: 幂的末尾

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

筛选

 编写题解 3015: 幂的末尾

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

幂的末尾数..

摘要:解题思路:Int放不下这个数字所以用BIgInteger注意事项:参考代码:package test;//求a的b次方的后三位import java.util.Scanner;import java.……

幂的末尾解法

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

编写题解 3015: 幂的末尾

摘要:解题思路:注意事项:参考代码:a,b=map(int,input().split())c=pow(a,b)d=c%1000print(f&#39;{d:0>3d}&#39;)……

菜鸟:不会算的三位数

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(){    long long c=1;    int a,b,d;    sca……

Java快速幂BigInteger

摘要:参考代码:import java.math.BigInteger; import java.util.Scanner; public class Main{     public static ……

幂的末尾(python简单解法)

摘要:解题思路:这题很简单,直接看注释参考代码:a, b = map(int, input().split())x = (a ** b) % 1000    #要求a**b的末三位,所以取1000的余数if……