Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,11 @@ Just as you did in the first lab (Reference the Lab video in your Week 1 module)
4. Then issue a Pull request to my instructor repo
5. **Make sure to COPY the Pull request URL and submit it for the lab/assignment in Canvas.**

Enjoy the learning process!
Enjoy the learning process!

## Stump the Chump

I modified Ricardo's code in 5 different areas, and he quickly used the IDE to correct the errors.
He did the same to my code, and then the IDE made short work of them. I enjoy how the IDE will debug your code
in a way that require user input to make the actual change. I believe that this class provides the tools and the push
to learn how to write programs. I am looking forward to learning other languages, once I have a grasp on Java.
18 changes: 18 additions & 0 deletions src/Date.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
public class Date {
static String hello = "Hello World!";
static String day = "Thursday";
static int date = 25;
static String month = "January";

static int monthEU = 1;
static int year = 2024;


public static void main(String[] args) {


System.out.println(hello);
System.out.println("American:" + day + ", " + month + " " + date + ", " + year);
System.out.println("European:" + year + "-" + monthEU + "-" + date);
}
}