Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Milimeters
//Rextester.Program.Main is the entry point for your code. Don't change it. //Compiler version 4.0.30319.17929 for Microsoft (R) .NET Framework 4.5 using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Rextester { public class Program { static double a = 0.0, b = 0.0; static void introducir (){ Console.WriteLine("Introduzca el valor en Metros"); a=double.Parse(Console.ReadLine()); } static void calcular () { b=(a/1000); } static void mostrar () { Console.WriteLine("Son: "+b.ToString()+" milimetros"); } public static void Main(string[] args) { introducir (); calcular (); mostrar (); } } }
run
|
edit
|
history
|
help
0
Delegate-ModifyObject
printing * in pyramid shape
Interface
project euler 15, C#
gh
How to Count Occurrences of a Word in a String (LINQ) (C#)
Main4-5
Main Math
List Compare and print - Except
Polygon Util