renewed lab1

This commit is contained in:
dima0808 2023-02-24 08:25:42 +01:00 committed by GitHub
parent 90fcc14d7e
commit 75217080cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 7 deletions

View File

@ -1,16 +1,17 @@
public class Main { public class Main {
public static void main(String[] args) { public static void main(String[] args) {
float s = 0, a = 2, b = 1, m = 6, n = 4; float s = 0.0f, a = 2.0f, b = 1.0f, m = 6.0f, n = 4.0f;
int c = 1;
for (float i = a; i <= m; i++) { for (float i = a; i <= m; i++) {
for (float j = b; j <= n; j++) {
// Перевірка ділення на 0. // Перевірка ділення на 0.
if (i == -1) { if (i == -1) {
System.out.println("Помилка: ділення на нуль не можливе."); System.out.println("Помилка: ділення на нуль не можливе.");
return; return;
} }
s += (i + j) / (i + 1); for (float j = b; j <= n; j++) {
s += (i + j) / (i + c);
} }
} }