Skip to content

Instantly share code, notes, and snippets.

package philyboyd_studge;
public class MinecraftChallenge {
public static void main(String[] args) {
World world = new World();
world.updateWorld();
@snarkbait
snarkbait / TaxCalculator.java
Last active August 29, 2015 14:15
2014 US Federal Tax Calculator
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])