Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- public class Calculadora
- {
- public double Suma (int a, int b)
- {
- return a + b;
- }
- public double Suma (double a, double b)
- {
- return a + b;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement