Advertisement
sergAccount

Untitled

Feb 6th, 2021
751
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.15 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6. package calcapp;
  7.  
  8. public class Calc {    
  9.     // класс дл явыполнения вычислений !!!
  10.     // определяем свойства для выполнения вычисл-я
  11.     double v1;
  12.     double v2;
  13.     // выполнения вычисления на основе операции
  14.     String operation; // + - * /        
  15.     // метод отвечает за выпонение расчета калькулятора
  16.     public double calculate(){
  17.         return 0;
  18.     }    
  19.     // get, set - методы
  20.     public double getV1() {
  21.         return v1;
  22.     }
  23.  
  24.     public void setV1(double v1) {
  25.         this.v1 = v1;
  26.     }
  27.  
  28.     public double getV2() {
  29.         return v2;
  30.     }
  31.  
  32.     public void setV2(double v2) {
  33.         this.v2 = v2;
  34.     }
  35.  
  36.     public String getOperation() {
  37.         return operation;
  38.     }
  39.  
  40.     public void setOperation(String operation) {
  41.         this.operation = operation;
  42.     }
  43. }
  44.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement