美文网首页
华氏度摄氏度对照表输出

华氏度摄氏度对照表输出

作者: 优秀产品研习社 | 来源:发表于2018-09-14 17:44 被阅读0次

    public class Demo16{

    public  static  void main(String[] args){

    //摄氏度:0~250

    //  每一项 以20度 为间隔

    //摄氏度:0  20  40  60  80  100

    //华氏度:摄氏度*9/5.0+30

    // 条目不能超过10条

    int count = 0;

    System.out.println("编号\t摄氏温度\t华氏温度");

    for(int i = 0;i<=250;i+=20){

    count ++;

    double h = i * 9/5.0+32;//华氏温度

    System.out.println(count+"\t"+i+"\t\t"+h);

    if(count==10){

    break;

    }

    }

    }

    }

    相关文章

      网友评论

          本文标题:华氏度摄氏度对照表输出

          本文链接:https://www.haomeiwen.com/subject/tkxagftx.html