Modulo

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

using System; class raiz{ public static void Main(){ int x1 = 0, x2 = 0; Console.WriteLine("Dame el primer nmero"); x1 = int.Parse( Console.ReadLine() ); Console.

WriteLine("Dame el segundo nmero"); x2 = int.Parse( Console.ReadLine() ); Console.WriteLine(" Console.WriteLine(" Console.WriteLine(" Console.WriteLine(" Console.WriteLine(" Console.ReadLine(); } } x1 x1 x1 x1 x1 + * / & x2: x2: x2: x2: x2: " " " " " + + + + + (x1 + x2) ); (x1 - x2) ); (x1 * x2) ); (x1 / x2) ); (Math.Pow(x1,x2))

You might also like