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 philyboyd_studge; | |
public class MinecraftChallenge { | |
public static void main(String[] args) { | |
World world = new World(); | |
world.updateWorld(); |
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 TaxCalculator implements TaxLookup | |
{ | |
public static double getTax(int income, int status) | |
{ | |
double tax = 0; | |
for (int i = 0; i < 7; i++) | |
{ | |
if (income > lookup[status][i][1]) |
NewerOlder