当前位置: 代码迷 >> Java相关 >> 如何写一个符合要求的程序
  详细解决方案

如何写一个符合要求的程序

热度:109   发布时间:2010-05-19 21:25:43.0
如何写一个符合要求的程序
单位换算:设计并编写一个Java小应用程序,实现一组单位的换算。例如,磅和公斤的换算,输入12磅时自动换算成5.436公斤。跪谢!小弟在叩首。
搜索更多相关的解决方案: 设计  应用程序  单位换算  Java  

----------------解决方案--------------------------------------------------------
import javax.swing.JOptionPane;
public class Sum1 {

    public static void main(String[] args) {
        String number=JOptionPane.showInputDialog("请选择转换方式:\n1:磅转换成公斤:\n2:公斤转换成磅;");
        String output="";
        int n=0,m=0;
         n=Integer.parseInt(number);
        switch(n){
        case 1:
            number=JOptionPane.showInputDialog("请输入要转换的数值:(单位:磅)!");
             m=Integer.parseInt(number);
            output=m+"磅等于:"+m*0.453+"公斤!";
            break;
        case 2:
            number=JOptionPane.showInputDialog("请输入要转换的数值:(单位:公斤)!");
            m=Integer.parseInt(number);
            output=m+"公斤等于:"+m*2.2075+"磅!";
            break;
        default :
            output="请正确输入数值!";
        }
        
        JOptionPane.showMessageDialog(null, output);
        
    }
----------------解决方案--------------------------------------------------------
回复 2楼 myhnuhai
很好,很强大!
----------------解决方案--------------------------------------------------------
呵呵呵,满意就好啊!!
----------------解决方案--------------------------------------------------------
  相关解决方案