From 3f7ed6860eaf2d0a0c6668f2e0d81ad5453a26af Mon Sep 17 00:00:00 2001 From: Danil <124897142+kenzay01@users.noreply.github.com> Date: Thu, 30 Mar 2023 15:54:39 +0300 Subject: [PATCH] Add files via upload --- lab1.java | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 lab1.java diff --git a/lab1.java b/lab1.java new file mode 100644 index 0000000..efae1ca --- /dev/null +++ b/lab1.java @@ -0,0 +1,29 @@ +import java.util.Scanner; + +public class lab1 { + public static void main(String[] args) { + float S = 0, i, j; + int C = 1; + Scanner scan = new Scanner(System.in); + System.out.println("Введіть значення a (a>1):"); + int a = scan.nextInt(); + System.out.println("Введіть значення b:"); + int b = scan.nextInt(); + System.out.println("Введіть значення n:"); + int n = scan.nextInt(); + System.out.println("Введіть значення m:"); + int m = scan.nextInt(); + for (i = a; i <= n; i++) { + if (i - C == 0) { + System.out.println("Ділення на 0"); + return; + } + for (j = b; j <= m; j++) { + S += (i - j) / (i - C); + + } + } + System.out.println(S); + + } +}