注意数字为0时要特判!!!
摘要:解题思路:输入n,传入check函数。开一个数组,存n的每一位数字。然后遍历数组,sum1为和值,sum2为乘积值。注意事项:0! 0! 0! 0! 0!n=0的时候要特判!!!!!!然后变量都设置成……
2007: 计算输入数据的和与乘积
摘要:解题思路:注意事项:参考代码:#include<iostream>
#include<cmath>
#include<algorithm>
using namespace std;
int m……
计算输入数据的和与乘积 (C++代码)
摘要:解题思路:注意最好用long long 型数据,否则为10位的时候可能越界,另外一定要考虑输入的数据为0的情况,否则乘积就不对。参考代码:include <iostream>
using names……
计算输入数据的和与乘积-题解(C++代码)
摘要:```cpp
#include
#include
using namespace std;
int main(){
string s1;
long long sum=0……
2007: 计算输入数据的和与乘积
摘要:#include <bits/stdc++.h>
using namespace std;
int main(){
string s;
cin >> s;
vec……
编写题解 2007: 计算输入数据的和与乘积
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){i……
计算输入数据的和与乘积 (C++代码)
摘要:解题思路:把数字作为char数组读入,处理起来会更方便一些。参考代码:#include <iostream>
#include <cstring>
using namespace std;
……