Java 找出数组中正数和负数的个数

Java 找出数组中正数和负数的个数

在Java中,数组是一种非原始数据类型,它存储相同数据类型的值。

根据问题说明,我们需要找出给定数组中正数、负数和零的个数。

任何大于零的数字都被称为正数,如果数字小于零,则为负数,否则为零。

让我们看看如何使用Java编程语言来实现。

展示一些示例

示例1

Suppose the original array is {2, 0, -1, 4, -6}

在上面的数组中,存在2个正数,2个负数和1个零。

示例2

Suppose the original array is {-12, -23, -11, 64}

在上面的数组中,存在1个正数和3个负数。

示例3

Suppose the original array is {11, 22, 0, 44, 0}

步骤

  • 步骤1 - 声明并初始化一个整数数组。使用三个变量来计算正数、负数和零元素的数量。

  • 步骤2 - 迭代数组的每个元素,并检查它是否大于零、小于零或等于零。相应地增加计数值。

  • 步骤3 - 最后打印结果。

多种方法

我们提供了不同的解决方案。

  • 通过静态初始化数组元素

  • 通过使用用户定义的方法

让我们逐一看看程序及其输出。

方法1:通过静态初始化数组元素

示例

在这个方法中,数组元素将在程序中初始化。然后根据算法检查正数、负数和零元素的总数。

import java.util.Arrays;
public class Main{

   //main method
   public static void main(String args[]){

      //declared 3 integer variables and initialized all with zero
      int positiveCount, negativeCount, zeroCount;
      positiveCount=negativeCount=zeroCount=0;

      //Declare and initialize the array elements
      int arr[] = {4, 8, -2, 3, -1, 0, 7, 0, -9};

      //get the length of the array
      int size=arr.length;

      // Print the array elements
      System.out.println("Array elements are: "+Arrays.toString(arr));

      //iterate each element of array
      for(int i=0; i < arr.length; i++) {

         //check positive number
         if(arr[i] > 0)
            positiveCount++;

         //check negative number
         else if(arr[i] < 0)
            negativeCount++;

         //check zero
         else
            zeroCount++;
      }

      //print the result
      System.out.println("Count of positive numbers in array: "+positiveCount);
      System.out.println("Count of negative numbers in array: "+negativeCount);
      System.out.println("Count of zeroes in array: "+zeroCount);
   }
}

输出

Array elements are: [4, 8, -2, 3, -1, 0, 7, 0, -9]
Count of positive numbers in array: 4
Count of negative numbers in array: 3
Count of zeroes in array: 2

方式2:使用用户定义的方法

示例

在这种方法中,程序将初始化数组元素。然后通过将数组作为参数调用一个用户定义的方法,并在该方法内按照算法检查正数、负数和零元素的总数。

import java.util.Arrays;
public class Main{

   //main method
   public static void main(String args[]){

      //Declare and initialize the array elements
      int arr[] = {4, -2, 3, 7, 0, -9};

      //calling the user defined method
      findCount(arr);
   }

   //method to find frequency of postive, negative and zero elements
   public static void findCount(int []arr){

      //declared 3 integer variables and initialized all with zero
      int positiveCount, negativeCount, zeroCount;
      positiveCount=negativeCount=zeroCount=0;

      //get the length of the array
      int size=arr.length;

      // Print the array elements
      System.out.println("Array elements are: "+Arrays.toString(arr));

      //iterate each element of array
      for(int i=0; i < arr.length; i++) {

         //check positive number
         if(arr[i] > 0)
            positiveCount++;

         //check negative number
         else if(arr[i] < 0)
            negativeCount++;

         //check zero
         else
            zeroCount++;
      }

      //print the result
      System.out.println("Count of positive numbers in array: "+positiveCount);
      System.out.println("Count of negative numbers in array: "+negativeCount);
      System.out.println("Count of zeroes in array: "+zeroCount);
   }
}

输出

Array elements are: [4, -2, 3, 7, 0, -9]
Count of positive numbers in array: 3
Count of negative numbers in array: 2
Count of zeroes in array: 1

在本文中,我们探讨了如何在Java中找到数组中正数、负数和零的频率。

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程