Advertisement
veronikaaa86

04. Sum of Two Numbers

Apr 8th, 2023
584
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.09 KB | None | 0 0
  1. package nestedLoops;
  2.  
  3. import java.util.Scanner;
  4.  
  5. public class P04SumOfTwoNumbers {
  6.     public static void main(String[] args) {
  7.         Scanner scanner = new Scanner(System.in);
  8.  
  9.         int firstNum = Integer.parseInt(scanner.nextLine());
  10.         int secondNum = Integer.parseInt(scanner.nextLine());
  11.         int magicNum = Integer.parseInt(scanner.nextLine());
  12.  
  13.         boolean validComb = false;
  14.         int countCombination = 0;
  15.         for (int i = firstNum; i <= secondNum; i++) {
  16.             for (int j = firstNum; j <= secondNum; j++) {
  17.                 countCombination++;
  18.                 int sum = i + j;
  19.  
  20.                 if (sum == magicNum) {
  21.                     System.out.printf("Combination N:%d (%d + %d = %d)%n", countCombination, i, j, sum);
  22.                     validComb = true;
  23.                     break;
  24.                 }
  25.             }
  26.             if (validComb) {
  27.                 break;
  28.             }
  29.         }
  30.  
  31.         if (!validComb) {
  32.             System.out.printf("%d combinations - neither equals %d%n", countCombination, magicNum);
  33.         }
  34.     }
  35. }
  36.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement