Compare commits
2 Commits
74a44852af
...
896fc1f4d4
Author | SHA1 | Date |
---|---|---|
Rhinemann | 896fc1f4d4 | |
Rhinemann | 7fa667cb2d |
|
@ -0,0 +1,2 @@
|
||||||
|
Lab 1/Lab_1.class
|
||||||
|
Lab 2/Lab_2.class
|
|
@ -23,6 +23,8 @@ public class Lab_1 {
|
||||||
b = input.nextInt();
|
b = input.nextInt();
|
||||||
} while (b > m);
|
} while (b > m);
|
||||||
|
|
||||||
|
input.close();
|
||||||
|
|
||||||
if ((a <= 0) && (n >= 0)) {
|
if ((a <= 0) && (n >= 0)) {
|
||||||
System.out.println("Error, division by zero, shutting down!");
|
System.out.println("Error, division by zero, shutting down!");
|
||||||
System.exit(1);
|
System.exit(1);
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
import java.util.Scanner;
|
import java.util.Scanner;
|
||||||
import java.util.Arrays;
|
|
||||||
|
|
||||||
public class Lab_2 {
|
public class Lab_2 {
|
||||||
|
|
||||||
|
@ -23,7 +22,7 @@ public class Lab_2 {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
short a, rows = 0, columns = 0, width;
|
short a, rows = 0, columns = 0;
|
||||||
String format;
|
String format;
|
||||||
|
|
||||||
Scanner input = new Scanner(System.in);
|
Scanner input = new Scanner(System.in);
|
||||||
|
|
Loading…
Reference in New Issue