Advertisement
ms_olin

Untitled

Feb 27th, 2017
7,596
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.50 KB | None | 0 0
  1. package com.panelic.kalkulator;
  2.  
  3. public class ControllerActivity {
  4.     public double addition(ModelActivity cmodel){
  5.         return cmodel.m_num1 + cmodel.m_num2;
  6.     }
  7.  
  8.     public double subtraction(ModelActivity cmodel){
  9.         return cmodel.m_num1 - cmodel.m_num2;
  10.     }
  11.  
  12.     public double multiplication(ModelActivity cmodel){
  13.         return cmodel.m_num1 * cmodel.m_num2;
  14.     }
  15.  
  16.     public double divistion(ModelActivity cmodel){
  17.         return cmodel.m_num1 / cmodel.m_num2;
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement