如何用 Java 找出数组中大于、小于或等于某个值的数字?


你可以按如下方式找出数组中大于、小于或等于某个值的数字

示例

在线演示

public class GreaterOrLess {
   public static void main(String args[]) {
      int value = 65;
      int[] myArray = {41, 52, 63, 74, 85, 96 };
      System.out.println("Elements of the array that are equal to the given value are::");
      for(int i = 0; i<myArray.length; i++) {
         if(value==myArray[i]) {
            System.out.println("Index ::"+i+" Element::"+myArray[i]);
         }
      }
      System.out.println("Elements of the array that are greater than the given value are::");
      for(int i = 0; i<myArray.length; i++) {
         if(value<=myArray[i]) {
            System.out.println("Index ::"+i+" Element::"+myArray[i]);
         }
      }
      System.out.println("Elements of the array that are less than the given value are::");
      for(int i = 0; i<myArray.length; i++) {
         if(value>myArray[i]) {
            System.out.println("Index ::"+i+" Element::"+myArray[i]);
         }
      }
   }
}

输出

Elements of the array that are equal to the given value are::
Elements of the array that are greater than the given value are::
Index ::3 Element::74
Index ::4 Element::85
Index ::5 Element::96
Elements of the array that are less than the given value are::
Index ::0 Element::41
Index ::1 Element::52
Index ::2 Element::63

更新于:2020 年 6 月 16 日

4K+ 次浏览

开启您的职业生涯

通过完成课程获得认证

入门
广告