/* Applicazione che visualizza una tabella di conversione
 * delle temperature da Celsius a Farhenheit. */
class ConversioneCelsiusFarhenheit {

    public static void main(String[] args) {
	    double tc;    // temperatura in gradi Celsius
	    double tf;    // temperatura in gradi Farhenheit

	    /* intestazione della tabella */
	    System.out.println("      Celsius        Farhenheit ");

	    /* corpo della tabella */
	    tc = 0;
	    while (tc <= 100) {
	        tf = tc*1.8+32;
	        System.out.println("\t" + tc + "\t\t" + tf);
	        tc = tc + 5;
	    }
    }

}
