编写题解 3015: 幂的末尾 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){int a,b,c=1;cin>>a>>b;for(int i…… 题解列表 2024年06月05日 0 点赞 0 评论 59 浏览 评分:0.0
编写题解 3015: 幂的末尾 摘要:解题思路:注意事项:参考代码:a,b=map(int,input().split())c=pow(a,b)d=c%1000print(f'{d:0>3d}')…… 题解列表 2024年03月01日 0 点赞 0 评论 86 浏览 评分:0.0
循环中乘方,为取末3位,对应取模10^3 摘要:解题思路:1.循环中乘方2.为取末3位,对应取模10^33.输出前面的填充,%03d\n格式注意事项:参考代码:#include<iostream> using namespace std; in…… 题解列表 2024年12月05日 0 点赞 0 评论 50 浏览 评分:0.0
题解 3015: 幂的末尾 摘要: #include using namespace std; int main(){ int a,b,c=1000,z=1; cin>>a>>b;…… 题解列表 2023年11月14日 0 点赞 0 评论 83 浏览 评分:0.0
Java快速幂BigInteger 摘要:参考代码:import java.math.BigInteger; import java.util.Scanner; public class Main{ public static …… 题解列表 2024年10月27日 1 点赞 0 评论 70 浏览 评分:0.0
幂的末尾解法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; scanf("%d %d",&a,&b); int i; int r=1; for(i=1;i…… 题解列表 2023年02月14日 0 点赞 0 评论 75 浏览 评分:0.0
解 3015: 幂的末尾 摘要: #include using namespace std; int main(){ int a,b,c,d; for(int i=100;i…… 题解列表 2023年11月19日 0 点赞 0 评论 94 浏览 评分:0.0
幂的末尾数.. 摘要:解题思路:Int放不下这个数字所以用BIgInteger注意事项:参考代码:package test;//求a的b次方的后三位import java.util.Scanner;import java.…… 题解列表 2024年01月17日 0 点赞 0 评论 54 浏览 评分:0.0
菜鸟:不会算的三位数 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(){ long long c=1; int a,b,d; sca…… 题解列表 2022年11月28日 0 点赞 0 评论 131 浏览 评分:0.0
幂的末尾(python简单解法) 摘要:解题思路:这题很简单,直接看注释参考代码:a, b = map(int, input().split())x = (a ** b) % 1000 #要求a**b的末三位,所以取1000的余数if…… 题解列表 2023年12月11日 0 点赞 0 评论 292 浏览 评分:6.0