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.

27 changes: 27 additions & 0 deletions src/Date.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
public class Date {
// I actually needed to learn this for a personal project I'm working on, separate from school.
// For full disclosure, Brendan F is my IHSS client and roommate.
// He's good with computers and understands these assignments easier than I do.
// He is helping me with understanding materials, and this is why our work looks alike.
// I'm not copying his work, but he IS helping me, including understanding his reasoning for his solutions.

public static void main(String [] args) {
String day;
String date;
String month;
String year;
day = "Saturday ";
date = "27 ";
month = "January ";
year = "2024 ";

// System.out.print (day);
// System.out.print (month);
// System.out.print (date);
// System.out.println (year);
System.out.print (day);
System.out.print (date);
System.out.print (month);
System.out.println (year);
}
}