-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathemployee.java
More file actions
49 lines (40 loc) · 1.05 KB
/
employee.java
File metadata and controls
49 lines (40 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import java.util.Scanner;
public class employee{
String fn;
String ln;
float Msalary;
void employee(){
fn="Tejal";
ln="Powar";
Msalary=0.0f;
}
void getinfo(){
Scanner sc = new Scanner(System.in);
System.out.println("Enter First name:");
fn=sc.nextLine();
System.out.println("enter Last name:");
ln=sc.nextLine();
System.out.println("ENter monthly salary:");
Msalary=sc.nextFloat();
}
void setinfo(){
System.out.println("First name:" +fn);
System.out.println("Last name:"+ln);
System.out.println("Monthly salary:"+ Msalary);
}
void yearlySalary(){
System.out.println("Yearly salary of "+fn+" "+ln+" is"+(12*Msalary));
}
}
// public class EmployeeTest{
// }
class Emplo{
public static void main(String args[]){
employee emp = new employee();
// EmployeeTest empTest = new empTest;
emp.getinfo();
emp.setinfo();
emp.yearlySalary();
// empTest.getinfo();
}
}