// Lab 3, problem 4, version 1 // Print a conversion table $US --> GM class ConvTable1 { static final float COEF = 1.67f; public static void main (String[] args) { int US = 10; System.out.println ("US dollars\tGerman marks"); while (US <= 100) { System.out.println (US + "\t\t" + (COEF * US) ); US = US + 10; } } }