Advertisement
venik2405

Untitled

Sep 23rd, 2020
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.03 KB | None | 0 0
  1. package com.company;
  2.  
  3. import java.util.Scanner;
  4.  
  5. public class Main {
  6.     public static void main(String[] args) {
  7.         boolean isNotCorrect = false;
  8.         System.out.println("Данная программа находит произведение P=2*4*6*8..*2*n;");
  9.         int i = 0;
  10.         int n = 0;
  11.         int comp = 1;
  12.         do {
  13.             try {
  14.                 Scanner scanner = new Scanner(System.in);
  15.                 System.out.println("Введите число n");
  16.                 n = scanner.nextInt();
  17.                 if ((n<1) || (n>9)) {
  18.                     isNotCorrect = true;
  19.                 }
  20.             } catch (Exception e) {
  21.                 System.out.println("Введите чило n>5");
  22.                 isNotCorrect = true;
  23.             }
  24.         } while (isNotCorrect);
  25.         for (i = 2; i < (2 * n) + 1; i++) {
  26.             if (i % 2 == 0) {
  27.                 comp = comp * i;
  28.             }
  29.         }
  30.         System.out.println("Произведение равно " + comp);
  31.     }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement