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 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;
- }
- // выполяет вычисление и возвращает результат типа double // + - * /
- public double calculate(){
- //
- if(operation.equals("+")){ // operation=="+"
- return v1 + v2;
- }else if(operation.equals("-")){
- return v1 - v2;
- }else if(operation.equals("*")){
- return v1 * v2;
- }else if(operation.equals("/")){
- return v1/v2;
- }
- return 0;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement