将摄氏温度转化为华氏温度

代码:

import javax.swing.*;
public class bb{
public static void mainString[] args){
  String input = JOptionPane.showInputDialognull,”Enter a degree in Celsius”,”changeDegree”,JOptionPane.QUESTION_MESSAGE);
  double Celsius = Double.parseDoubleinput);
  double Fahrenheit = 9.0/5)*Celsius+32;
  String result = Celsius+” Celsius is “+Fahrenheit+” Fahrenheit”;
  JOptionPane.showMessageDialognull,result);
}
}

结果:

Published by

风君子

独自遨游何稽首 揭天掀地慰生平

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注