This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Kurt Kaiser | |
CTIM-168 E40 | |
07.13.2018 | |
*/ | |
public class DemoGeoFigure { | |
// Demonstrate Square subclass | |
public static void mysquare(){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Kurt Kaiser | |
// CTIM-168 E40 | |
// 7.13.2018 | |
import java.util.Scanner; | |
public class PhoneBook | |
{ | |
/* Creates multidimensional array of numbers and | |
asking for users input, calls lookup and outputs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Kurt Kaiser | |
CTIM-168 E40 | |
07.11.2018 | |
*/ | |
import java.util.Objects; | |
public abstract class Periodic | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Kurt Kaiser | |
* CTIM 168 E40 | |
* 7.13.2018 | |
* | |
*/ | |
import java.util.Objects; | |
public class BreedingHorse extends Horse |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Kurt Kaiser | |
CTIM-168 | |
7/23/2018 | |
Convert Time | |
Chapter 9 - Project 1 | |
*/ | |
import java.util.Scanner; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Kurt Kaiser | |
CTIM 168 | |
07.28.2018 | |
Homework: C10PP10 | |
RFID Race Data Text File Log | |
*/ | |
import java.io.FileNotFoundException; | |
import java.util.Scanner; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Cheat Detector | |
By Kurt Kaiser | |
kurtkaiser.us | |
*/ | |
import org.omg.PortableInterceptor.SYSTEM_EXCEPTION; | |
import java.io.*; | |
import java.util.Scanner; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Kurt Kaiser | |
CTIM 168 | |
07.28.2018 | |
Homework: Steganography | |
Least Significant Bit Insertion | |
*/ | |
import java.io.*; | |
import java.util.Scanner; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Kurt Kaiser | |
CTIM 168 | |
7.31.2018 | |
C11PP3 | |
*/ | |
import java.util.Scanner; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Kurt Kaiser | |
CTIM 168 | |
08.02.2018 | |
Homework: Recursive Handshakes | |
Chapter 11 Practice Problem 6 | |
*/ | |
public class RecursiveHandshake | |
{ |
OlderNewer