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
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!

# 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!
23 changes: 23 additions & 0 deletions src/Date.java
Original file line number Diff line number Diff line change
@@ -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");




}
}