Advertisement
veronikaaa86

03. Combinations

Aug 7th, 2021
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. package nestedLoops;
  2.  
  3. import java.util.Scanner;
  4.  
  5. public class P03Combinations {
  6. public static void main(String[] args) {
  7. Scanner scanner = new Scanner(System.in);
  8.  
  9. int n = Integer.parseInt(scanner.nextLine());
  10.  
  11. int countValidCombination = 0;
  12. for (int i = 0; i <= n; i++) {
  13. for (int j = 0; j <= n; j++) {
  14. for (int k = 0; k <= n; k++) {
  15. int sum = i + j + k;
  16. if (sum == n) {
  17. countValidCombination++;
  18. }
  19. }
  20. }
  21. }
  22.  
  23. System.out.println(countValidCombination);
  24. }
  25. }
  26.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement