Advertisement
gguuppyy

лаба1н2

Sep 23rd, 2023 (edited)
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.44 KB | Source Code | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class Main {
  4.     public static void main(String[] args) {
  5.         Scanner scanner = new Scanner(System.in);
  6.         System.out.println("Данная программа вычисляет число размещений из N по M.");
  7.         int A, N = 0, M = 0, Result1 = 1, Result2 = 1, Difference, Num;
  8.         boolean isIncorrect;
  9.         System.out.println("Введите целые числа N и M, где N > M:");
  10.         do {
  11.             isIncorrect = false;
  12.             try {
  13.                 N = Integer.parseInt(scanner.nextLine());
  14.                 M = Integer.parseInt(scanner.nextLine());
  15.             } catch (Exception err) {
  16.                 isIncorrect = true;
  17.                 System.out.println("Неверные данные. Введите координаты точки:");
  18.             }
  19.             if(!(isIncorrect) && !(N > M)) {
  20.                 System.out.println("Неверные данные. Введите координаты точки:");
  21.                 isIncorrect = true;
  22.             }
  23.         } while (isIncorrect);
  24.         scanner.close();
  25.  
  26.         for (Num = 1; Num <= N; Num++) {
  27.             Result1 *= Num;
  28.         }
  29.  
  30.         Difference = N - M;
  31.         for (Num = 1; Num <= Difference; Num++) {
  32.             Result2 *= Num;
  33.         }
  34.  
  35.         A = Result1 / Result2;
  36.  
  37.         System.out.println("Число размещений из N по M: " + A);
  38.     }
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement