编写题解 1970: 巨大的数 摘要:import java.util.Scanner; public class Main { public static void main(String[] args) { Scann…… 题解列表 2022年02月11日 0 点赞 0 评论 253 浏览 评分:9.9
1970: 巨大的数 摘要:解题思路:把每个数的个位乘起来用个数存。 每乘一个数,把存的数取余10。注意事项:存的数初始为1。参考代码:#include<bits/stdc++.h> using namespace std;…… 题解列表 2022年07月11日 0 点赞 0 评论 178 浏览 评分:9.9
巨大的数 C语言 14行代码 摘要:#include #include int main() { int n, ai, i, a = 1; scanf("%d", &n); for(i = 0; …… 题解列表 2022年07月26日 0 点赞 0 评论 248 浏览 评分:9.9
1970: 巨大的数 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> #include<cmath> using namespace std; int mai…… 题解列表 2023年10月16日 0 点赞 0 评论 50 浏览 评分:0.0
巨大的数(因为只需要求个位,那每次的乘积只保留个位就行) 摘要:参考代码: ```c #include int main() { int n; scanf("%d",&n); long long sum=1;//不用在意long long 这是…… 题解列表 2023年11月04日 0 点赞 0 评论 120 浏览 评分:0.0
巨大的数 C语言 百分百通过 摘要:解题思路: 题目要求多个ai相乘结果的个位数字是多少。 据此我们可以发现只有ai的个位数才能够影响结果。因而我们可以使用一个整形变量res来保存结果,进行n次循环,每次循环…… 题解列表 2024年03月06日 0 点赞 0 评论 110 浏览 评分:9.9