标签:inf nbsp 面积并 mic test ane png wing load
周长=2*PI*R
面积=PI*R*R
import java.io.*; public class MyTest { /*输入圆的半径,求圆的周长和面积*/ public static void main(final String[] args) throws IOException { //定义变量PI final double PI=3.14; //定义变量 byte buf[]=new byte[50]; double r,girth,area; //输入圆的半径 System.out.println("请输入圆的半径:"); System.in.read(buf); String str=new String(buf); r=Double.parseDouble(str.trim()); //计算周长和面积 girth=2*PI*r; area=PI*r*r; //输出结果 System.out.println("圆的周长为:"+girth); System.out.println("圆的面积为:"+area); } }
import javax.swing.JOptionPane; public class MyTest2 { /*输入圆的半径,求圆的周长和面积*/ public static void main(final String[] args) { //定义变量PI final double PI=3.14; double r,girth,area; //图形化输入方案 final String s1=JOptionPane.showInputDialog("请输入圆的半径:"); r=Double.parseDouble(s1); //计算周长和面积 girth=2*PI*r; area=PI*r*r; //输出结果 JOptionPane.showMessageDialog(null,"圆的周长为\n"+girth+"\n"+"圆的面积为\n"+area); } }
【Java】编写Java应用程序,完成从键盘输入圆的半径,求圆的周长和面积并输出结果的功能
标签:inf nbsp 面积并 mic test ane png wing load
原文地址:https://www.cnblogs.com/HGNET/p/13329258.html