From ac85a3bde9dfda162f96c1544638e19481da1998 Mon Sep 17 00:00:00 2001 From: Deppesh Date: Tue, 24 Sep 2024 20:51:00 -0400 Subject: [PATCH 1/2] Added variables to BasicCalc --- src/calculator/BasicCalc.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/calculator/BasicCalc.java b/src/calculator/BasicCalc.java index baf6b99..fa862a8 100644 --- a/src/calculator/BasicCalc.java +++ b/src/calculator/BasicCalc.java @@ -8,5 +8,7 @@ public class BasicCalc //include getters and setters method to access variables //include methods for operations + int a; + int b; } \ No newline at end of file From eab14aa900feb47d07e1588dbf3323e4631346dd Mon Sep 17 00:00:00 2001 From: Deppesh Madishetti <45026847+Deppesh12@users.noreply.github.com> Date: Tue, 24 Sep 2024 20:59:47 -0400 Subject: [PATCH 2/2] added sysout in BasicCalc.java --- src/calculator/BasicCalc.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/calculator/BasicCalc.java b/src/calculator/BasicCalc.java index fa862a8..119f01c 100644 --- a/src/calculator/BasicCalc.java +++ b/src/calculator/BasicCalc.java @@ -10,5 +10,6 @@ public class BasicCalc //include methods for operations int a; int b; + System.out.println("Adding sysout"); -} \ No newline at end of file +}