Run Code
|
API
|
Code Wall
|
Users
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Raiz Cuadrada
//Rextester.Program.Main is the entry point for your code. Don't change it. //Microsoft (R) Visual C# Compiler version 2.9.0.63208 (958f2354) using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Rextester { public class Program { public static void Main(string[] args) { int a = 25, b = 100, c= 144, d= 49; double raiza = Math.Sqrt(a); double raizb = Math.Sqrt(b); double raizc = Math.Sqrt(c); double raizd = Math.Sqrt(d); //Your code goes here Console.WriteLine("La raiz cuadrada de "+ a+ " es " +raiza); Console.WriteLine("La raiz cuadrada de "+ b+ " es " +raizb); Console.WriteLine("La raiz cuadrada de "+ c+ " es " +raizc); Console.WriteLine("La raiz cuadrada de "+ d+ " es " +raizd); } } }
run
|
edit
|
history
|
help
0
Please
log in
to post a comment.
Index.cshtml
enums with extension method: better
Validate or get the check digit of a segment of a Windows 8 / 10 activation installation ID
Test
DateTime
lala
Moon Gravity
property_comparison3
binary search tree (insert, search, findmin, findmax, level-pre-in-post order traversals
Boyer Moore String Search
Please log in to post a comment.