Advertisement
Fhernd

AppCliente.cs

Nov 12th, 2017
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.71 KB | None | 0 0
  1. using System;
  2. using Utilidades;
  3.  
  4. namespace Cliente
  5. {
  6.     public class AppCliente
  7.     {
  8.         static void Main()
  9.         {
  10.             Aritmetica aritmetica = new Aritmetica();
  11.            
  12.             double a = 5;
  13.             double b = 7;
  14.            
  15.             Console.WriteLine ("Adición de {0} y {1} es igual a {2}.", a, b, aritmetica.Adicion(a,b));
  16.             Console.WriteLine ("Sustracción de {0} y {1} es igual a {2}.", a, b, aritmetica.Sustraccion(a,b));
  17.             Console.WriteLine ("Producto de {0} y {1} es igual a {2}.", a, b, aritmetica.Producto(a,b));
  18.             Console.WriteLine ("Cociente de {0} y {1} es igual a {2}.", a, b, aritmetica.Cociente(a,b));
  19.             Console.WriteLine ("Exponenciación de {0} y {1} es igual a {2}.", a, b, aritmetica.Exponenciacion(a,b));
  20.         }
  21.     }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement