Skip to content

Commit 53f27e7

Browse files
authored
Driver
1 parent 6c2b0ef commit 53f27e7

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

maxmin/GenerateMaxMin.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
package maxmin;
2+
3+
public class GenerateMaxMin
4+
{
5+
public static void main(String[] args) throws NumberFormatException, BothEqualException
6+
{
7+
String x = "-1";
8+
String y = "-2";
9+
10+
MaxMin mm = new MaxMin(x,y);
11+
System.out.println(mm.findMax());
12+
System.out.println(mm.findMin());
13+
}
14+
15+
}

0 commit comments

Comments
 (0)