Update Lab 1.
This commit is contained in:
parent
896fc1f4d4
commit
fe36219746
|
@ -7,32 +7,55 @@ public class Lab_1 {
|
||||||
|
|
||||||
Scanner input = new Scanner(System.in);
|
Scanner input = new Scanner(System.in);
|
||||||
|
|
||||||
System.out.print("Enter n: ");
|
do {
|
||||||
n = input.nextInt();
|
try {
|
||||||
|
System.out.print("Enter n: ");
|
||||||
System.out.print("Enter m: ");
|
n = input.nextInt();
|
||||||
m = input.nextInt();
|
break;
|
||||||
|
} catch (Exception e) {
|
||||||
|
System.out.println("N must be an integer.");
|
||||||
|
input.nextLine();
|
||||||
|
}
|
||||||
|
} while (true);
|
||||||
|
|
||||||
do {
|
do {
|
||||||
System.out.print("Enter a (can't be above n): ");
|
try {
|
||||||
a = input.nextInt();
|
System.out.print("Enter m: ");
|
||||||
} while (a > n);
|
m = input.nextInt();
|
||||||
|
break;
|
||||||
|
} catch (Exception e) {
|
||||||
|
System.out.println("M must be an integer.");
|
||||||
|
input.nextLine();
|
||||||
|
}
|
||||||
|
} while (true);
|
||||||
|
|
||||||
do {
|
do {
|
||||||
System.out.print("Enter b (can't be above m): ");
|
try {
|
||||||
b = input.nextInt();
|
System.out.print("Enter a: ");
|
||||||
} while (b > m);
|
a = input.nextInt();
|
||||||
|
break;
|
||||||
|
} catch (Exception e) {
|
||||||
|
System.out.println("A must be an integer.");
|
||||||
|
input.nextLine();
|
||||||
|
}
|
||||||
|
} while (true);
|
||||||
|
|
||||||
|
do {
|
||||||
|
try {
|
||||||
|
System.out.print("Enter b: ");
|
||||||
|
b = input.nextInt();
|
||||||
|
break;
|
||||||
|
} catch (Exception e) {
|
||||||
|
System.out.println("B must be an integer.");
|
||||||
|
input.nextLine();
|
||||||
|
}
|
||||||
|
} while (true);
|
||||||
|
|
||||||
input.close();
|
input.close();
|
||||||
|
|
||||||
if ((a <= 0) && (n >= 0)) {
|
for (int i = a; i <= n; i++) {
|
||||||
System.out.println("Error, division by zero, shutting down!");
|
for (int j = b; j <= m; j++) {
|
||||||
System.exit(1);
|
s += j;
|
||||||
}
|
|
||||||
|
|
||||||
for (int i = a; i < n; i++) {
|
|
||||||
for (int j = b; j < m; j++) {
|
|
||||||
s += i * j / i;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue