Skip to content

Instantly share code, notes, and snippets.

// Thomas Worrell
import java.util.Scanner;
public class FindMaximumValue
{
public static void main(String[] args)
{
Scanner input = new Scanner(System.in);
boolean kill = true;
int top = 0;
import java.util.Scanner;
/*
Thomas Worrell
10/18/2019
Intro to Java Programming CSC-111
Homework Six
Create an ISBM-13 number from 12 entered digits
taworrell0001@student.stcc.edu
*/
public class ISBN13Generator
import java.util.Scanner;
/*
Thomas Worrell
10/7/2019
Intro to Java Programming CSC-111
Homework Five
Check an entered set of numbers if it is a valid Social Security Number
taworrell0001@student.stcc.edu
*/
/*
Thomas Worrell
*/
import java.util.Scanner;
public class FizzBuzz
{
public static void main(String[] args)
/*
Thomas Worrell
9/23/2019
Intro to Java Programming CSC-111
Homework Four
Output the corresponding number associated with an inputed character(REVISED WITHOUT LOOPS)
taworrell0001@student.stcc.edu
*/
import java.util.Scanner;
/*
Thomas Worrell
9/23/2019
Intro to Java Programming CSC-111
Homework Four
Output the corresponding number associated with an inputed character
taworrell0001@student.stcc.edu
*/
import java.util.Scanner;
/*
Thomas Worrell
9/23/2019
Intro to Java Programming CSC-111
Homework Three
Decide who wins in Rock, Paper, Scissors, Lizard, Spock
taworrell0001@student.stcc.edu
*/
public class RandomCardProgram
{
/*
Thomas Worrell
9/23/2019
Intro to Java Programming CSC-111
Homework Three
Decide who wins in Rock, Paper, Scissors, Lizard, Spock
taworrell0001@student.stcc.edu
*/
import java.util.Scanner;
import java.util.Scanner;
/*
Thomas Worrell
9/13/2019
Intro to Java Programming CSC-111
Homework Two
Calculate Temp, Dewpoint, and/or Relative Humidity
taworrell0001@student.stcc.edu
*/
/*
Thomas Worrell
9/11/2019
Intro to Java Programming CSC-111
Cost of Driving
Finding the cost of a trip based on fuel efficency, distance and fuel prices
taworrell0001@student.stcc.edu
*/
import java.util.Scanner;