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.

22 changes: 22 additions & 0 deletions src/Date.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
/**
* @author Trevor Hartman
* @author Alexei Iachkov
* @date 1-27-24
* @version Lost count finally got it though xD
*/
public class Date {
static String day = "Saturday";
static String month = "January";
static int monthnumerical = 01;
static int year = 2024;
static int currentdate = 27;

public static void main(String[] args) {

System.out.println("Welcome to the seventh dimension Neo!");
System.out.println("Enjoy your stay!");

System.out.println("American Date Format: " + day + ", " + month + " " + currentdate + ", " + year);
System.out.println("European Date Format: " + day + ", " + currentdate + "/" + monthnumerical + "/"+ year );
}
}
26 changes: 24 additions & 2 deletions src/StumpTheChump.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,28 @@
/**
* @author Alexei Iachkov
* @date 1-27-24
* @version 1
*/

public class StumpTheChump {
// Initially working program.
public static void main(String[] args) {
System.out.println("Hi Chump, can you be stumped?");
static String playerone = "Aksel";
static String playertwo = "Alexei";

public static void main(String [] args) {

System.out.println(playerone + " VS " + playertwo);
System.out.println("The 5 Point Total Winner is... playertwo!");
}
}
//playerone Turn 1, removed semicolon line 10, playertwo FIXED error without compiling
//playertwo (2 points total)
//playertwo Turn 2, added a bracket thingy line 12, playerone FIXED error without compiling
//playerone (2 point stotal)
//playerone Turn 3, lower-cased System and upper-cased println line 14, playertwo FIXED error without compiling but didn't notice the Println change
//playertwo (3 points total)
//playertwo Turn 4, removed static line 12, playerone easily FIXED error without compiling
//playerone (4 points total)
//playerone Turn 5, removed brackets line 12, playertwo fixed error without compiling
//playertwo (5 points total)