forked from Mhassanbughio/Calculator-java-Fx
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Controller
87 lines (83 loc) · 2.36 KB
/
Controller
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
package sample;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
public class Controller {
boolean checker = false;
double one_int = 0;
double second_int = 0;
double answer = 0;
String one = "";
char two;
@FXML
Label ans;
public void pressNum(ActionEvent actionEvent) {
Button btnez = (Button) actionEvent.getSource();
one = one.concat(btnez.getText());
ans.setText(one);
}
public void pressAct(ActionEvent actionEvent) {
Button btn = (Button) actionEvent.getSource();
if(!checker){
one_int = Double.parseDouble(ans.getText());
ans.setText("");
two = btn.getText().charAt(0);
checker = true;
one = "";
}
else{
second_int = Double.parseDouble(ans.getText());
if(two == '+'){
answer = one_int + second_int;
}
if(two == '-'){
answer = one_int - second_int;
}
if(two == '/'){
answer = one_int / second_int;
}
if(two == '*'){
answer = one_int * second_int;
}
ans.setText(String.format("%f", answer));
two = btn.getText().charAt(0);
one_int = answer;
one = "";
}
}
public void pressEqual(ActionEvent actionEvent){
if(!checker){
one_int = Double.parseDouble(ans.getText());
ans.setText(String.valueOf(one_int));
checker = false;
one = "";
}
else{
second_int = Double.parseDouble(ans.getText());
if(two == '+'){
answer = one_int + second_int;
}
if(two == '-'){
answer = one_int - second_int;
}
if(two == '/'){
answer = one_int / second_int;
}
if(two == '*'){
answer = one_int * second_int;
}
ans.setText(String.format("%f", answer));
checker = false;
one = "";
}
}
public void clearAll(ActionEvent actionEvent){
checker = false;
one_int = 0;
second_int = 0;
answer = 0;
one = "";
ans.setText("");
}
}