forked from OOP-ADF/Task_1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTemperatureConvert.java
More file actions
90 lines (75 loc) · 1.97 KB
/
TemperatureConvert.java
File metadata and controls
90 lines (75 loc) · 1.97 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
// Name : Gangsar Yoga Pamungkas
// NIM : 1301154096
// Kelas : IF-39-12
import java.util.InputMismatchException;
import java.util.Scanner;
public class TemperatureConvert{
public static void main(String[] args) {
float c,f,r,k;
int pilih;
String answer = null;
int userchoice;
Scanner input = new Scanner(System.in);
System.out.print("masukkan suhu dalam Celcius : ");
c = input.nextInt();
do{
System.out.println("1. Fahrenheit ");
System.out.println("2. Reamur ");
System.out.println("3. Kelvin ");
System.out.println("4. Exit");
System.out.println("pilih conversi : ");
try{
pilih = input.nextInt();
switch(pilih){
case 1:
f = (9*c)/5+32;
System.out.println("Hasil Fahrenheit : "+f);
break;
case 2:
r = (4* c)/5;
System.out.println("Hasil Reamur : "+r);
break;
case 3:
k = c + 273;
System.out.println("Hasil Kelvin : "+k);
break;
case 4:
System.exit(0);
return;
default:
break;
}
answer = input.nextLine();
// if(pilih == 1)
// {
// f = (9*c)/5+32;
// System.out.println("Hasil Fahrenheit : "+f);
// }
// else if (pilih == 2) {
// r = (4* c)/5;
// System.out.println("Hasil Reamur : "+r);
// }else if (pilih == 3) {
// k = c + 273;
// System.out.println("Hasil Kelvin : "+k);
// }else{
// System.out.println("pilihan hanya 3 ");
// }
// System.out.println("ingin convertsi yang lain : (y/n) ");
// // userchoice = input.nextInt();
// answer = input.nextLine();
}
catch(InputMismatchException e){
System.err.println(e.toString());
}
catch(NullPointerException e){
System.err.println(e.toString());
}
catch(Exception e){
System.err.println(e.toString());
}
System.out.println("ulang atau tidak (Y/N)");
answer = input.nextLine();
}
while( answer.toLowerCase().equals("y"));
}
}