diff --git a/README.md b/README.md index 931badb..1b0569f 100644 --- a/README.md +++ b/README.md @@ -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! \ No newline at end of file +Enjoy the learning process! + +# Steps I took to find a partner +- since its online I texted a friend of mine thats in this class, but he already finished the Lab. Since im pretty much +Turning it in last minute. I thought that other people were also already done with the Lab. I don't have time during the +weekday, due to working all day. Next time I will message my friend to wait for me so we could do the activity together. +He was working on other assignments that are due today, so he couldnt help me out with this Lab. Sorry I promise to do +better next time. It takes me a while to complete each lab (around 3-4 hours.) Thank you! \ No newline at end of file diff --git a/src/Date.java b/src/Date.java new file mode 100644 index 0000000..b8d88dc --- /dev/null +++ b/src/Date.java @@ -0,0 +1,23 @@ +public class Date { + + public static void main(String[] args) { + System.out.println("Hello World"); + int day = 27; + String month = "January"; + int year = 2024; + Date printAmerican; + Date printEuropean; + + System.out.println("Today's date is: " + month + " " + day + ", " + year); + System.out.println("Saturday, January 27, 2024"); + System.out.println("Saturday 27 january 2024"); + + + + + } +} + + + +