题解 1015: [编程入门]求和训练

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

筛选

用列表来求和

摘要:解题思路:把公式分成三个部分,每 个部分单独计算,最后求和注意事项:参考代码:a,b,c = map(int,input().split())suma = []sumb = []sumc = []fo……

求和训练(C++)

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){    int a,b,c;    c……

[编程入门]求和训练

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

[编程入门]求和训练

摘要:```python a,b,c = map(int,input().split()) seq_a = [i for i in range(1,a+1)] seq_b = [i**2 for ……