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

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

筛选

利用C++来编写求和训练

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

1015匿名函数解法(Python)

摘要:注意事项:其实写在一行,不过展示出来太臃肿,如果有优化的一行解写法请在评论区留言参考代码:lst = list(map(int, input().split()))print(&#39;{:.2f}&……

三个for循环秒杀

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