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
| package challengers; | |
| import java.util.Scanner; | |
| public class Mining { | |
| public void main() { | |
| Scanner scanner = new Scanner(System.in); | |
| int miningPlayerPoints = 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
| package challengers; | |
| import java.util.Scanner; | |
| public class calculator { | |
| public static void main() { | |
| Scanner scanner = new Scanner(System.in); | |
| // I could use for, while, do while any other loops, but i want to use this. |