From c4004f691e285ec99593dae2d57e31ab579f146a Mon Sep 17 00:00:00 2001 From: Jonathan Birkey Date: Wed, 28 Feb 2024 10:21:53 -0500 Subject: [PATCH] refactoring --- README.md | 4 ++-- src/com/github/jonathanbirkey/chapter05/Exercise19.java | 1 + src/com/github/jonathanbirkey/chapter05/Exercise27.java | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 534d68d..36c49b6 100644 --- a/README.md +++ b/README.md @@ -8,8 +8,8 @@ This is the textbook I used to first learn programming in 2016. After having gra ## Notes | Tool | Name | Version | Link | |---|---|---|---| -| IDE | Eclipse | 2023-12 R | | -| JVM | Oracle Java JRE | 21.0.2 | Installed from Eclipse IDE installer | +| IDE | Eclipse | 2023-12 R | | +| Java | Oracle Java JRE | 21.0.2 | Installed from Eclipse IDE installer | | Code Formatter | google-java-format-eclipse-plugin | v1.20.0 | | ## google-java-format diff --git a/src/com/github/jonathanbirkey/chapter05/Exercise19.java b/src/com/github/jonathanbirkey/chapter05/Exercise19.java index f4518e4..3a2c542 100644 --- a/src/com/github/jonathanbirkey/chapter05/Exercise19.java +++ b/src/com/github/jonathanbirkey/chapter05/Exercise19.java @@ -29,3 +29,4 @@ public static void main(String[] args) { } } } + diff --git a/src/com/github/jonathanbirkey/chapter05/Exercise27.java b/src/com/github/jonathanbirkey/chapter05/Exercise27.java index c410e29..7e29702 100644 --- a/src/com/github/jonathanbirkey/chapter05/Exercise27.java +++ b/src/com/github/jonathanbirkey/chapter05/Exercise27.java @@ -1,7 +1,7 @@ /** * @author : Jonathan Birkey * @mailto : jonathan.birkey@gmail.com - * @created : 27Dec2021 + * @created : 28Feb2024 *

(Display leap years) Write a program that displays all the leap years, 10 per line, from * 101 to 2100, separated by exactly one space. Also display the number of leap years in this * period.