View Single Post
Old 11-15-2004, 03:52 PM   #2 (permalink)
welshbyte
Insane
 
Location: Wales, UK, Europe, Earth, Milky Way, Universe
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.
__________________
There are only two industries that refer to their customers as "users". - Edward Tufte
welshbyte is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73