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; | |
| public class KUStudentTest { | |
| public static void main(String[] args){ | |
| Scanner keyboard = new Scanner(System.in); | |
| KUStudent name = new KUStudent(); | |
| KUStudent info = new KUStudent(); |
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
| /*File Name: <CubeString.java> | |
| Author: <Austin Applegate> | |
| KUID: <2210758> | |
| Email Address: <theappler@gmail.com> | |
| Homework Assignment Number: < 2 > | |
| Description: <Given a word from the user the program will make a cube out of it where the word will be spelled out vertically and horizontally> | |
| Last Changed: <9/30/12> | |
| */ | |
| 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; | |
| public class AsciiArt1 { | |
| public static void main(String[] args){ | |
| Scanner keyboard = new Scanner(System.in); | |
| //declaring variables | |
| int userInput; |
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
| /*File Name: <AsciiArt.java> | |
| Author: <Austin Applegate> | |
| KUID: <2210758> | |
| Email Address: <theappler@gmail.com> | |
| Homework Assignment Number: < 2 > | |
| Description: <Depending on what number the user chooses it will display a specific pattern relating the number choosen> | |
| Last Changed: <9/30/12> | |
| */ | |
| 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
| public class questionB | |
| { | |
| public static void main(String[] args) | |
| { | |
| int x = 3; |
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; | |
| public class SeasonStartDay | |
| { | |
| public static void main(String[] args) | |
| { | |
| Scanner keyboard = new Scanner(System.in); | |
| //declaring variables |
NewerOlder