一道java英文题,急求翻译!

Create a class: Employee. This class will have 2 String variable a) fName , b)lName
1 long variable a) _ID, 1 int variable workDays, 5 float variable a) BASIC, b) HRA, c) TA, d) PF, e) NET. All these variables are private. Also Getter and Setter method for _ID, fName, lName, BASIC.
Getter methods are used to retrieve values from these variables. These Getter methods are public. Setter methods are used to store values in these variables. These Setter methods are public. Also create a method calculateSalary(), that will calculate net salary for the employee based on given rules.

1. BASIC = BASIC * workdays
2. HRA = 40% of BASIC
3. TA = 10% of (BASIC + HRA)
4. PF = 12.5% OF (BASIC + HRA + TA)
5. NET = (BASIC + HRA + TA) - PF

Variables:-
private String fName, lName
private long _ID
private Int workdays
private float BASIC, HRA, TA, PF, NET
Methods:-
public void set_ID(long _ID)
public long get_ID()
public void setfName(String fName)
public String getfName()
public void setlName(String lName)
public String getlName()
public void setBASIC(float BASIC)
public float getfBASIC()
public void calculateSalary()

Save the File as “Employee.java”
Create class Company: this class will have the main method along with another method called void genID(), to generate employee ID. Hine:- use Random method of Math class to create employee ID.
From main method ask user to enter First name, Last name, Daily Wages and Number of Working Days. Store them in appropriate variables of Employee class using Setter methods. Then call genID() method of this class then calculateSalary() method of Employee class. Create 5 employee objects and store them in an array of Employee. Then print details list of all the employees.
求人工翻译,软件翻译脱离原来题意差太多了,没法看

创建一个类:员工。本课程将有2个字符串变量)FNAME,B)L-NAME
1长变量)_ID,1 int变量工作日,5浮点型变量a)基本,B)HRA,C)的TA,D),PF,C)网。所有这些变量都是私有的。此外getter和为_ID,FNAME,L-NAME,基本setter方法。
吸气剂的方法被用来从这些变量的值。这些getter方法是公开的。设置方法是用来存储在这些变量的值。这些setter方法是公开的。还可以创建一个方法calculateSalary(),这将计算净工资的基础上给出规则的员工。

1,基本=基本*个工作日
基本2 HRA=40%
3,助教=10%(基本+ HRA)
4,PF的为12.5%(基本+ HRA+ TA)
五,净利润=(基本+ HRA+ TA) - PF

变量: -
私人字符串FNAME,LNAME
私人长期_ID
私人诠释工作日
私人持股量基本,HRA,助教,PF,网
方法: -
公共无效set_ID(长_ID)
众长get_ID()
公共无效setfName(字符串FNAME)
公共字符串getfName()
公共无效setlName(字符串L-NAME)
公共字符串getlName()
公共无效setBASIC(浮点BASIC)
公众持股量getfBASIC()
公共无效calculateSalary()

将文件另存为“Employee.java”
创建一流企业:该类会有的主要方法与另一种称为无效genID()方法,生成员工编号。海因: - 使用Math类的random方法来创建员工ID。
从主要方法要求用户输入名字,姓氏,每日工资和工作的天数。它们存储在使用setter方法Employee类的相应的变量。然后调用这个类Employee类的话calculateSalary()方法genID()方法。创建5 Employee对象,并将其存储在员工的数组。然后打印出所有员工的详细列表。
温馨提示:内容为网友见解,仅供参考
第1个回答  2014-08-02
创建一个类:员工。这个类将有2个字符串变量)所,B)LName
1长变量)_id整数变量,1日,5个基本的浮点变量),B)和C),TA,D)PF,E)网。所有这些变量是私人的。同时吸气和_id,所,LName setter方法,基本。
getter方法用于检索从这些变量的值。这些getter方法是公共的。setter方法是用来存储在这些变量的值。这些setter方法是公共的。还创建了一个方法calculatesalary(),可以计算出基于规则的员工的净收入。
1。基本=基本*工作日
2。HRA = 40%的基础
3。TA = 10%(基本+ HRA)
4。PF = 12.5%(基本+ HRA + TA)
5。净=(基本+ HRA + TA)- PF
变量:—
private String所,LName
私人长_id
私人国际日
私有基础,HRA,TA,PF,网
方法:—
public void set_id(长_id)
公共长get_id()
public void setfname(字符串所)
getfname()字符串
public void setlname(字符串LName)
getlname()字符串
public void setbasic(浮点)
公众持股getfbasic()
public void calculatesalary()
将文件保存为“Java的员工。”
创建类:这类公司将随着另一种方法称为无效的genid()的主要方法,生成员工ID。海因:使用随机方法的数学类创建雇员ID。
从主方法要求用户输入的名字,姓氏,日工资和工作日数。它们存储在员工使用适当的变量赋值方法。然后打电话给这类Employee类然后calculatesalary()方法genid()方法。创建5个Employee对象并将其存储在数组的员工。然后打印所有员工的详细清单。

望采纳本回答被网友采纳
相似回答