Advertisement
veronikaaa86

03. Combinations

Apr 2nd, 2022
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 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 count = 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.  
  17. if (sum == n) {
  18. count++;
  19. }
  20. }
  21. }
  22. }
  23.  
  24. System.out.println(count);
  25. }
  26. }
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement