Skip to content

Commit 3e709cc

Browse files
committed
Exercise 5-A
1 parent c978d1f commit 3e709cc

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

ch05/LogicMethods.java

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
public class LogicMethods
2+
{
3+
public static void main(String[] args)
4+
{
5+
6+
}
7+
8+
private static void printIsLarge(int number)
9+
{
10+
if (number > 99)
11+
{
12+
System.out.println("The number is large");
13+
14+
System.out.println();
15+
}
16+
}
17+
18+
}

0 commit comments

Comments
 (0)