Initial Commit

This commit is contained in:
2022-10-07 00:22:46 -03:00
commit bdcf6d3e1c
465 changed files with 15466 additions and 0 deletions

View File

@ -0,0 +1,13 @@
/** @author Isaac Ray Shoebottom (3429069) **/
import java.util.Scanner;
public class InputAndOutput{
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("My name is TOM. What is your name?");
String userName = sc.nextLine();
System.out.println("Pleased to meet you, " + userName);
System.out.println("In which program are you enrolled?");
String userEnrollment = sc.nextLine();
System.out.println("Oh? So you're " + userName + ", currently enrolled in " + userEnrollment + '!');
}
}

View File

@ -0,0 +1,6 @@
/** @author Isaac Ray Shoebottom (3429069) **/
public class MyFirstJavaProgram {
public static void main(String[]args) {
System.out.println("Hello World");
}
}

View File

@ -0,0 +1,14 @@
/** @author Isaac Ray Shoebottom (3429069) **/
public class MyInitials {
public static void main(String[] args) {
System.out.println("######### #### ");
System.out.println(" # ## ");
System.out.println(" # # ");
System.out.println(" # ## ");
System.out.println(" # ### ");
System.out.println(" # # ");
System.out.println(" # # ");
System.out.println(" # ## ");
System.out.println("######### #### ");
}
}