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

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

筛选

计负均正--java

摘要: import java.util.Scanner; public class 计负均正 { public static void main(String[] ……

二级C语言-计负均正

摘要:解题思路:输入时判断数据正负,正负都计数,然后正数的可以在判断后加起来。注意事项:参考代码:#include <stdio.h>int main(){    int a[20]={},i,count=……

计负均正 模块化

摘要:解题思路:模块化  一个函数功能最好计量单一,独立;注意事项:参考代码#include<stdio.h>int fushu(int a[]){    int b=0,i;    for(i=0;i<2……

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

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

1061: [C语言]计负均正

摘要:#include <stdio.h>int main (){ int a[20]; int i; int num=0; double s; //遍历输入 for (i=0;i<20;i++) { s……

简单的代码

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

二级C语言-计负均正

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