Facebook
From Balon, 3 Years ago, written in C#.
Embed
Download Paste or View Raw
Hits: 151
  1. using System;
  2.  
  3.  
  4. public class PrintNumber
  5. {
  6.     public static void Main()
  7.     {
  8.         Console.WriteLine("Proszę podać liczbę: ");
  9.         string a = Console.ReadLine();
  10.         double b = double.Parse(a);
  11.         Console.WriteLine("To jest liczba: {0}", b);
  12.     }
  13. }
  14.  
  15.  

Replies to PrintNum rss

Title Name Language When
Re: PrintNum Balon csharp 3 Years ago.