From 667935df0a0c52c1e2fef78e1c3035707b9ca669 Mon Sep 17 00:00:00 2001 From: Rit8060 <35737465+Rit8060@users.noreply.github.com> Date: Thu, 1 Oct 2020 21:04:59 +0530 Subject: [PATCH] Update IfStatementRunner.java --- .../in28minutes/ifstatement/examples/IfStatementRunner.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/07-Conditionals/src/com/in28minutes/ifstatement/examples/IfStatementRunner.java b/07-Conditionals/src/com/in28minutes/ifstatement/examples/IfStatementRunner.java index fe5f8f1..e5377e2 100644 --- a/07-Conditionals/src/com/in28minutes/ifstatement/examples/IfStatementRunner.java +++ b/07-Conditionals/src/com/in28minutes/ifstatement/examples/IfStatementRunner.java @@ -3,6 +3,10 @@ public class IfStatementRunner { public static void main(String[] args) { + puzzle1(); + puzzle2(); + puzzle3(); + puzzle4(); puzzle5(); }