This file contains hidden or 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
| // 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; |
This file contains hidden or 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
| 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 |
This file contains hidden or 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
| 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 | |
| */ |
This file contains hidden or 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
| /* | |
| Thomas Worrell | |
| */ | |
| import java.util.Scanner; | |
| public class FizzBuzz | |
| { | |
| public static void main(String[] args) |
This file contains hidden or 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
| /* | |
| 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; |
This file contains hidden or 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
| /* | |
| 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; |
This file contains hidden or 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
| /* | |
| 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 | |
| { |
This file contains hidden or 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
| /* | |
| 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; |
This file contains hidden or 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
| 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 | |
| */ |
This file contains hidden or 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
| /* | |
| 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; |