题解 1970: 巨大的数

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

筛选

1970: 巨大的数

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> #include<cmath> using namespace std; int mai……

巨大的数(快点开看一下吧)

摘要:解题思路:利用数组存储每一次输入的数字,并且计算其余数的乘积注意事项:不能使用c++的文件头参考代码://#include<bits/stdc++.h>//using namespace std;#i……

1970: 巨大的数

摘要:解题思路:注意事项:while(n--&&scanf("%d",&num))  //利用短路功能,没有次数不会进行输入和循环参考代码:#include <stdio.h> int main(){ ……

1970: 巨大的数

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

巨大的数-题解(C语言代码)

摘要:解题思路:注意事项:只需要每位数的最后一位,如果都乘完后取最后一位会只有81分参考代码:#include<stdio.h>int main(void){ int a[10000],n,i; int s……

巨大的数 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<cstdio> using namespace std; int main(){ int n,a,result=1; scanf("%d……

巨大的数-题解(C++代码)

摘要:解题思路:        很佛系的一道题~注意事项:参考代码:#include<bits/stdc++.h> using namespace std; // 取num的个位数 inline ……