巨大的数-题解(C语言代码) 摘要:解题思路:注意事项:只需要每位数的最后一位,如果都乘完后取最后一位会只有81分参考代码:#include<stdio.h>int main(void){ int a[10000],n,i; int s…… 题解列表 2020年08月03日 0 点赞 0 评论 317 浏览 评分:0.0
巨大的数 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<cstdio> using namespace std; int main(){ int n,a,result=1; scanf("%d…… 题解列表 2019年03月22日 0 点赞 0 评论 526 浏览 评分:0.0
巨大的数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); int x[n]; int i; int nb …… 题解列表 2019年02月21日 0 点赞 0 评论 672 浏览 评分:0.0
巨大的数 (C语言代码)用动态分配内存的方法哦 摘要:解题思路:打算使用数组,但是不知道具体会有多少个元素,因此我打算使用malloc和free函数注意事项:malloc和free一点要搭配使用,他们的头文件是stdlib.h参考代码:#include<…… 题解列表 2019年02月18日 2 点赞 0 评论 741 浏览 评分:0.0
巨大的数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,n; int s = 1; scanf("%d", &n); for(int i …… 题解列表 2019年01月17日 0 点赞 1 评论 315 浏览 评分:0.0
巨大的数(快点开看一下吧) 摘要:解题思路:利用数组存储每一次输入的数字,并且计算其余数的乘积注意事项:不能使用c++的文件头参考代码://#include<bits/stdc++.h>//using namespace std;#i…… 题解列表 2018年11月29日 0 点赞 0 评论 704 浏览 评分:0.0
巨大的数-题解(C语言代码) 摘要: #include int main() { int s,ai,i; long long t=1; scanf("%d",&s); for(i=0;i…… 题解列表 2020年02月11日 0 点赞 0 评论 492 浏览 评分:7.3
巨大的数 (Java代码) 摘要:解题思路:在Java语言,当计算大数时,会引用BigInteger这个类。从而进行,加、减、乘、除、取余等运算~注意事项:参考代码:import java.math.BigInteger; impo…… 题解列表 2018年11月25日 1 点赞 0 评论 578 浏览 评分:8.0
巨大的数-题解(C++代码) 摘要:不会的小伙伴来看看,题目是只要个位数,那在做这道题时就要个位数就行。 给你们看看我的办法。 #include using namespace std; int m…… 题解列表 2020年01月31日 0 点赞 6 评论 545 浏览 评分:9.9
巨大的数-题解(C语言代码)满分题解!! 摘要:#####参考代码: #include int main() { int n,i,j,k; scanf("%d",&n); long…… 题解列表 2019年12月09日 0 点赞 0 评论 942 浏览 评分:9.9