(1)转换关系:华氏温度 = 摄氏温度 * 9 / 5.0 + 32

(2)循环操作:计算华氏温度,并输出对照条目

(3)循环条件:条目<=10 && 摄氏温度 <= 250

(4)类名为TempTable。

public class TempTable {
    public static void main(String[] args) {
        double f;//华氏
        double c = 0;//摄氏
        int count = 1;//条目
        System.out.println("摄氏温度" + "\t华氏温度"); /*println 自动换行*/
        do {
            f = c * 9 / 5.0 + 32;// 转换
            System.out.println(c + "\t" + f);
            c = c + 20;
            count++;
        }while (count <= 10 && c <=250);
    }
}