-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDistanceClass.java
44 lines (35 loc) · 1.11 KB
/
DistanceClass.java
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
//NINTH PROGRAM OF JAVA PRACTICAL
import java.util.Scanner;
class Distance{
double feet , inches;
// methods of class
public void calculateInFeetAndInches(long dist){
this.feet=3280.84*dist; // use of this pointer
this.inches=39370.1*dist;
}
public void print(){
System.out.println("The distance(Km) in feet is :"+this.feet);
System.out.println("The distance(Km) in inches is:"+this.inches);
}
}
public class DistanceClass {
public static void main(String [] args){
Scanner sc=new Scanner(System.in);
Distance obj1=new Distance();
System.out.print("Enter the distance in Kilometre for its calculation in feet and inches:");
try{
long a=sc.nextInt();
if(a<0){
throw new Exception("Distance should be positive");
}
obj1.calculateInFeetAndInches(a);
obj1.print();
}
catch(Exception e){
System.out.println(e);
}
finally{
sc.close();
}
}
}