I dont usually do people's homework for them, especially when the attempt looks pretty appauling like this. But, i'm a softy and i need the practice so... does this help:
Code:
import javax.swing.*;
public class Convert {
private int x;
public Convert(int x) {
this.x = x;
}
public void print {
if (x > 12) {
System.out.println("Does not compute");
} else {
switch (x) {
case 1: System.out.println("Ten");
break;
case 2: System.out.println("Hundred");
break;
case 3: System.out.println("Thousand");
break;
case 4: System.out.println("Ten Thousand");
break;
case 5: System.out.println("Hundred Thousand");
break;
case 6: System.out.println("Million");
break;
case 7: System.out.println("Ten Million");
break;
case 8: System.out.println("Hundred Million");
break;
case 9: System.out.println("Billion");
break;
case 10: System.out.println("Ten Billion");
break;
case 11: System.out.println("Hundred Billion");
break;
case 12: System.out.println("Trillion");
break;
}
}
}
}
BTW, please note i havent bothered testing it.