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.

2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ HINT: CR Computer Science Discord groups are a great way to play this game remot

**After 5 rounds, modify this README.md with a paragraph describing your attempt to stump your partner and the steps your partner took to identify and correct the error or the steps you think they should have used if they didn't solve the problem.**

I played 5 rounds with ChatGpt first round I noticed right off the bat that the AI had deleted the semi-colon at the end of the System.out.println section of code. Next challenge removed the "l" from println. 3rd round removed the last "}". The 4th round the "S" in String was un-capitalized I failed to notice it. 5th round was easier and esily noticable I saw that out was removed from the 3rd code line. All in all it was too bad I got 8/10 points; I did not use the compiler and I just mainly looked at the symbols to make sure anything was out of place.

---

## Part 2: Date Display Program
Expand Down
10 changes: 10 additions & 0 deletions src/Date.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
public class Date {
public static void main(String[] args) {
String month = "July";
String day = "Thrusday";
String date = "18";
String year = "2019";
System.out.println(day + "," + " " + month + " " + date + "," + year);
System.out.println(day + "," + " " + date + " " + month + "," + year);
}
}