w3resource

Java: Find the number of combinations

Java Basic: Exercise-241 with Solution

Write a Java program to find the number of combinations that satisfy p + q + r + s = n where n is a given number <= 4000 and p, q, r, s range from 0 to 1000.

Sample Solution:

Java Code:

// Importing the necessary Java utility package
import java.util.*;

// Main class named "Main"
public class Main {
   
    // Main method, the entry point of the program
    public static void main(String[] args) {
        
        // Creating a Scanner object to read input from the console
        Scanner sc = new Scanner(System.in);

        // Prompting the user to input a positive integer
        System.out.println("Input a positive integer:");

        // Initializing arrays to store temporary and final results
        int[] temp = new int[2001];
        int[] ans = new int[4001];

        // Nested loops to calculate combinations and populate the 'temp' array
        for (int i = 0; i <= 1000; i++) {
            for (int j = 0; j <= 1000; j++) {
                temp[i + j]++;
            }
        }

        // Nested loops to calculate combinations and populate the 'ans' array
        for (int i = 0; i <= 2000; i++) {
            for (int j = 0; j <= 2000; j++) {
                ans[i + j] += temp[i] * temp[j];
            }
        }

        // Reading a positive integer from the user
        int n = sc.nextInt();

        // Prompting the user with the result
        System.out.println("Number of combinations of a, b, c, d:");

        // Printing the final result
        System.out.println(ans[n]);
    }
} 

Sample Output:

Input a positive integer:
252
Number of combinations of a,b,c,d:
2731135

Flowchart:

Flowchart: Find the number of combinations.

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Java program that compute the maximum value of the sum of the passing integers.
Next: Write a Java program to which adds up columns and rows of given table as shown in the specified figure.

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.