Advertisement
Metziop

Programa Calculadora

Apr 27th, 2020
446
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.41 KB | None | 0 0
  1. /**
  2.  *
  3.  * @author Jesús Darío Rodríguez
  4.  */
  5. public class operaciones {
  6.     public int sumar (int a, int b){
  7.     return a + b;
  8.     }
  9.     public int resta (int a, int b){
  10.     return a-b;
  11.     }
  12.     public int multiplicar (int a, int b ){
  13.     return a * b;    
  14.     }
  15.     public int division (int a, int b){
  16.     return a / b;
  17.     }
  18.     public int modulo(int a, int b){
  19.     return a % b;
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement