w3resource

Java: Check if the number of 10 is greater than number to 20s in a given array of integers


Check 10 Exceeds 20 in Array

Write a Java program to determine whether the number 10 in a given array of integers exceeds 20.

Pictorial Presentation:

Java Basic Exercises: Check if the number of 10 is greater than number to 20s in a given array of integers


Sample Solution:

Java Code:

import java.util.*;

public class Exercise101 {
    public static void main(String[] args) {
        int[] array_nums = {10, 11, 10, 30, 45, 20, 33, 53};
        int result = 0;
        System.out.println("Original Array: "+Arrays.toString(array_nums));

        int ctr1 = 0; // Initialize a counter to count occurrences of value 10
        int ctr2 = 0; // Initialize a counter to count occurrences of value 20

        for(int i = 0; i < array_nums.length; i++) {
            if(array_nums[i] == 10)
                ctr1++; // Increment ctr1 when the element is equal to 10

            if(array_nums[i] == 20)
                ctr2++; // Increment ctr2 when the element is equal to 20
        }

        System.out.printf(String.valueOf(ctr1 > ctr2)); // Check if the count of 10 is greater than the count of 20
        System.out.printf("\n");
    }
}

Sample Output:

Original Array: [10, 11, 10, 30, 45, 20, 33, 53]                       
true

Flowchart:

Flowchart: Java exercises: Check if the number of 10 is greater than number to 20s in a given array of integers


For more Practice: Solve these Related Problems:

  • Modify the program to check if 20 appears more times than 10.
  • Write a program to count how many times 10 appears in the array.
  • Modify the program to check if any number appears more than 20 times.
  • Write a program to remove duplicates and then check if 10 appears more than 20 times.

Go to:


PREV : Count Elements Differ by 1.
NEXT : Contains 10 or 30.


Java Code Editor:

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.