Minor cleanup
This commit is contained in:
parent
7fa667cb2d
commit
896fc1f4d4
|
@ -23,6 +23,8 @@ public class Lab_1 {
|
|||
b = input.nextInt();
|
||||
} while (b > m);
|
||||
|
||||
input.close();
|
||||
|
||||
if ((a <= 0) && (n >= 0)) {
|
||||
System.out.println("Error, division by zero, shutting down!");
|
||||
System.exit(1);
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
import java.util.Scanner;
|
||||
import java.util.Arrays;
|
||||
|
||||
public class Lab_2 {
|
||||
|
||||
|
@ -23,7 +22,7 @@ public class Lab_2 {
|
|||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
short a, rows = 0, columns = 0, width;
|
||||
short a, rows = 0, columns = 0;
|
||||
String format;
|
||||
|
||||
Scanner input = new Scanner(System.in);
|
||||
|
|
Loading…
Reference in New Issue