题解 1061: 二级C语言-计负均正

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

筛选

最简单解法

摘要:#include<stdio.h>int&nbsp;main(){&nbsp;&nbsp;&nbsp;int&nbsp;q[20];&nbs……

二级C语言-计负均正

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>usingnamespacestd;intmain(){intn,sum1=……

简单的代码

摘要:解题思路:用一个for循环总起,再接两个分支,分别对正负数进行操作注意事项:参考代码:#include<stdio.h>#include<stdlib.h>intmain(){……

1061: [C语言]计负均正

摘要:#include<stdio.h>intmain(){inta[20];inti;intnum=0;doubles;&nbsp;//遍历输入for(i=0;i<20;i++)……

1061: 二级C语言-计负均正 python

摘要:解题思路:注意输入会有换行,这种写法更灵活一些注意事项:参考代码:list1&nbsp;=&nbsp;list(map(int,input().split()))while&n……

计负均正 模块化

摘要:解题思路:模块化&nbsp;一个函数功能最好计量单一,独立;注意事项:参考代码#include<stdio.h>intfushu(inta[]){&nbsp;&nb……