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

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

筛选

1015题: 求和训练

摘要:# 自己写的代码 ```c #include int main() { float a,b,c; float an=0.00,bn=0.00,cn=0.00; scanf("%f ……

三个for循环秒杀

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    float a,b,c,d,e,f,an,bn,cn,sn; an=bn=cn=sn=0; scanf("……

[编程入门]求和训练-题解(C语言代码)

摘要:解题思路:也没啥思路,就简单先将三个数算出来,再求和。。。。。。注意事项:没啥注意的,就变量类型大多为float,参考代码:#include <stdio.h>#include <math.h>//下……

[编程入门]求和训练

摘要:解题思路:注意事项:参考代码:a,b,c = map(int,input().split())sum_1 = 0sum_2 = 0sum_3 = 0for i in range(1,a+1):    ……