cylindertest.java

来自「Cylinder Project, Java Application」· Java 代码 · 共 61 行

JAVA
61
字号
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package cylinder;/** * * @author Rossiter */import java.text.DecimalFormat;import javax.swing.JOptionPane;public class CylinderTest {   public static void main( String[] args )   {      // create Cylinder object      Cylinder cylinder = new Cylinder( 12, 23, 2.5, 5.7 );      // get Cylinder's initial x-y coordinates, radius and height      String output = "X coordinate is " + cylinder.getX() +         "\nY coordinate is " + cylinder.getY() + "\nRadius is " +         cylinder.getRadius() + "\nHeight is " + cylinder.getHeight();      cylinder.setX( 35 );          // set new x-coordinate      cylinder.setY( 20 );          // set new y-coordinate      cylinder.setRadius( 4.25 );   // set new radius      cylinder.setHeight( 10.75 );  // set new height      // get String representation of new cylinder value      output +=         "\n\nThe new location, radius and height of cylinder are\n" +         cylinder.toString();      // format floating-point values with 2 digits of precision      DecimalFormat twoDigits = new DecimalFormat( "0.00" );      // get Cylinder's diameter           output += "\n\nDiameter is " +         twoDigits.format( cylinder.getDiameter() );      // get Cylinder's circumference      output += "\nCircumference is " +         twoDigits.format( cylinder.getCircumference() );      // get Cylinder's area      output += "\nArea is " + twoDigits.format( cylinder.getArea() );     // get Cylinder's volume      output += "\nVolume is " + twoDigits.format( cylinder.getVolume() );      JOptionPane.showMessageDialog( null, output ); // display output      System.exit( 0 );   } // end main} // end class CylinderTest

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?