Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- package calcapp;
- public class Calc {
- // класс дл явыполнения вычислений !!!
- // определяем свойства для выполнения вычисл-я
- double v1;
- double v2;
- // выполнения вычисления на основе операции
- String operation; // + - * /
- // метод отвечает за выпонение расчета калькулятора
- public double calculate(){
- double result = 0;
- // if-else
- if(operation.equals("+")){
- result = v1 + v2;
- } else if(operation.equals("-")){
- result = v1 - v2;
- } else if(operation.equals("*")){
- result = v1 * v2;
- } else if(operation.equals("/")){
- result = v1 / v2;
- }
- return result;
- }
- // get, set - методы
- public double getV1() {
- return v1;
- }
- public void setV1(double v1) {
- this.v1 = v1;
- }
- public double getV2() {
- return v2;
- }
- public void setV2(double v2) {
- this.v2 = v2;
- }
- public String getOperation() {
- return operation;
- }
- public void setOperation(String operation) {
- this.operation = operation;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement