Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class Main {
- public static void main(String[] args) {
- Scanner scanner = new Scanner(System.in);
- System.out.println("Данная программа вычисляет число размещений из N по M.");
- int A, N = 0, M = 0, Result1 = 1, Result2 = 1, Difference, Num;
- boolean isIncorrect;
- System.out.println("Введите целые числа N и M, где N > M:");
- do {
- isIncorrect = false;
- try {
- N = Integer.parseInt(scanner.nextLine());
- M = Integer.parseInt(scanner.nextLine());
- } catch (Exception err) {
- isIncorrect = true;
- System.out.println("Неверные данные. Введите координаты точки:");
- }
- if(!(isIncorrect) && !(N > M)) {
- System.out.println("Неверные данные. Введите координаты точки:");
- isIncorrect = true;
- }
- } while (isIncorrect);
- scanner.close();
- for (Num = 1; Num <= N; Num++) {
- Result1 *= Num;
- }
- Difference = N - M;
- for (Num = 1; Num <= Difference; Num++) {
- Result2 *= Num;
- }
- A = Result1 / Result2;
- System.out.println("Число размещений из N по M: " + A);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement