Mega Code Archive

 
Categories / Java / Collections Data Structure
 

Print a table of fahrenheit and celsius temperatures 1

/* Print a table of Fahrenheit and Celsius temperatures   * @author Ian F. Darwin, http://www.darwinsys.com/  * @version $Id: TempConverter.java,v 1.10 2004/03/16 01:43:31 ian Exp $  */ public class TempConverter {   public static void main(String[] args) {     TempConverter t = new TempConverter();     t.start();     t.data();     t.end();   }   protected void start() {   }   protected void data() {     for (int i=-40; i<=120; i+=10) {       float c = (i-32)*(5f/9);       print(i, c);     }   }   protected void print(float f, float c) {     System.out.println(f + " " + c);   }   protected void end() {   } }