Advertisement
Fhernd

Calculadora.cs

Nov 25th, 2017
2,391
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.21 KB | None | 0 0
  1. using System;
  2.  
  3. public class Calculadora
  4. {
  5.     public double Suma (int a, int b)
  6.     {
  7.         return a + b;
  8.     }
  9.    
  10.     public double Suma (double a, double b)
  11.     {
  12.         return a + b;
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement