Skip to content

Commit f52d83d

Browse files
authored
Update Calculator.java
1 parent 0746526 commit f52d83d

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

src/main/java/com/ravi/cal/RaviCalculator/Calculator.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ public long mulFucn(long first, long second){
3232

3333
return first*second;
3434
}
35-
35+
public void m1()
36+
{
37+
}
3638

3739
public static void main(String[] args) {
3840

@@ -41,7 +43,7 @@ public static void main(String[] args) {
4143

4244
Calculator cal = new Calculator(first, second);
4345
String output = String.format("\n*** Your Results ***\n\nFirst: %d\nSecond: %d\n\nSum : %d\nDifference : %d\nProduct : %d\n\n", cal.first, cal.second, cal.addFucn(first, second), cal.subFucn(first, second), cal.mulFucn(first, second));
44-
System.out.println(output)
46+
System.out.println(output);
4547
}
4648

4749
}

0 commit comments

Comments
 (0)