码迷,mamicode.com
首页 > 其他好文 > 详细

计算一个圆柱体的体积

时间:2014-08-03 12:35:25      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   java   io   ar   div   log   

import javax.swing.JOptionPane;
public class ComputeVolume {
    public static void main(String[] args){
        final double PI = 3.14;
        double volume;
        String inputRadius = JOptionPane.showInputDialog(null,"plz enter a radius:",
                "Input Dialog Demo",JOptionPane.QUESTION_MESSAGE);
        String inputHeight = JOptionPane.showInputDialog(null,"plz enter a height:",
                "Input Dialog Demo",JOptionPane.QUESTION_MESSAGE);
        double radius = Double.parseDouble(inputRadius);
        double height = Double.parseDouble(inputHeight);
        volume = (int)(radius * radius * PI * height);
        JOptionPane.showMessageDialog(null, "the Volume is :" + volume);
    }
}

 

计算一个圆柱体的体积,布布扣,bubuko.com

计算一个圆柱体的体积

标签:style   blog   color   java   io   ar   div   log   

原文地址:http://www.cnblogs.com/Amoxicil/p/3888235.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!