Facebook
From Balon, 3 Years ago, written in C#.
This paste is a reply to PrintNum from Balon - go back
Embed
Viewing differences between PrintNum and Re: PrintNum
using System;


public class PrintNumber
{
    public static void Main()
    {
        Console.WriteLine("Proszę podać liczbę: ");
        string a = Console.ReadLine();
        double b = double.Parse(a);
        for(int i=0; i<5; i++)
        {
            
Console.WriteLine("To jest liczba: {0}", b);
        }
        
        Console.Read();
    }
}

}

Replies to Re: PrintNum rss

Title Name Language When
Add_one Balon csharp 3 Years ago.