Advertisement
ggddhhii

Untitled

Jul 1st, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.53 KB | None | 0 0
  1. namespace _6_EjerciciosConMetodo
  2. {
  3.     class Program
  4.     {
  5.         static void Main(string[] args)
  6.         {            
  7.             string dato;
  8.  
  9.             Console.Write("Bienvenido,por favor introduzca informacion:");
  10.             dato = Console.ReadLine();    
  11.  
  12.             soloNumeros(dato);
  13.             if (soloNumeros(dato))
  14.                 Console.WriteLine("Su informacion es un numero");
  15.             else
  16.                 Console.WriteLine("Su informacion no es un numero");
  17.             Console.ReadLine();
  18.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement