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
package com.jnbutlerdevelopment; | |
import java.util.Scanner; | |
public class Main { | |
public static void main(String[] args) { | |
// Exercise 1: | |
/* Create a simple trivia game | |
* |
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
package com.jnbutlerdevelopment; | |
import java.util.Scanner; | |
public class Main { | |
public static void main(String[] args) { | |
/* | |
* Exercise 2 | |
* a) Re-Create the Trivia Game from before. This time with 5 questions & 5 answers. | |
* Use arrays to save the question and answers. |