计算输入数据的和与乘积 (C语言代码) 摘要:解题思路:题目说整型数据,但是字符型数据也可以通过,输入字符型数字,然后转化为整型数据,再进行累加、累乘即可。注意事项:参考代码:#include<stdio.h>#include<string.h>…… 题解列表 2019年04月20日 4 点赞 1 评论 867 浏览 评分:2.0
计算输入数据的和与乘积 (C++代码) 摘要:解题思路:注意最好用long long 型数据,否则为10位的时候可能越界,另外一定要考虑输入的数据为0的情况,否则乘积就不对。参考代码:include <iostream> using names…… 题解列表 2019年01月08日 0 点赞 0 评论 658 浏览 评分:0.0
注意数字为0时要特判!!! 摘要:解题思路:输入n,传入check函数。开一个数组,存n的每一位数字。然后遍历数组,sum1为和值,sum2为乘积值。注意事项:0! 0! 0! 0! 0!n=0的时候要特判!!!!!!然后变量都设置成…… 题解列表 2021年01月27日 0 点赞 0 评论 363 浏览 评分:0.0
2007: 计算输入数据的和与乘积 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> #include<algorithm> using namespace std; int m…… 题解列表 2023年10月19日 0 点赞 0 评论 80 浏览 评分:0.0
【iorixq】2007题-计算输入数据的和与乘积-题解(C语言代码),使用数组 摘要: #include int main(){ int a[10]={0},n,i=0,sum=0,product=1; scanf("%d",&n)…… 题解列表 2020年02月29日 0 点赞 0 评论 467 浏览 评分:0.0
编写题解 2007: 计算输入数据的和与乘积 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){i…… 题解列表 2025年01月12日 0 点赞 0 评论 42 浏览 评分:0.0
计算输入数据的和与乘积-题解(C++代码) 摘要:```cpp #include #include using namespace std; int main(){ string s1; long long sum=0…… 题解列表 2020年04月10日 0 点赞 0 评论 496 浏览 评分:0.0
2007: 计算输入数据的和与乘积 摘要:#include <bits/stdc++.h> using namespace std; int main(){ string s; cin >> s; vec…… 题解列表 2022年01月11日 0 点赞 0 评论 289 浏览 评分:0.0
计算输入数据的和与乘积-题解(C语言代码) 摘要: #include "stdio.h" int main() { char a[10]; int b[10],i,sum = 0,q=1; scanf("%s",&a); …… 题解列表 2020年02月17日 0 点赞 0 评论 294 浏览 评分:0.0