概述
第一、类名要大写(Test);
第二、可以有多个类,但是只能一个是public。
import java.util.*;
public class Test
{
public static void main(String[] args)
{
Scanner sc = new Scanner(System.in);
double oblength,obheight;
Oblong myoblong;
System.out.print("please enter the length");
oblength = sc.nextDouble();
System.out.print("please enter the height");
obheight = sc.nextDouble();
myoblong = new Oblong(oblength,obheight);
System.out.println("length="+myoblong.getLength());
System.out.println("height="+myoblong.getHeight());
System.out.println("area="+myoblong.calculateArea());
System.out.println("perimeter="+myoblong.calculatePerimeter());
}
}
class Oblong
{
private double length;
private double height;
public Oblong(double a,double b)
{
length = a;
height = b;
}
public double getLength()
{
return length;
}
public double getHeight()
{
return height;
}
public double calculateArea()
{
return length * height;
}
public double calculatePerimeter()
{
return 2*(length + height);
}
}
转载于:https://www.cnblogs.com/HpuAcmer/archive/2012/03/03/2378454.html
最后
以上就是活力篮球为你收集整理的类名大写的全部内容,希望文章能够帮你解决类名大写所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复