Facebook
From Balon, 3 Years ago, written in C#.
This paste is a reply to PrintNum from Balon - view diff
Embed
Download Paste or View Raw
Hits: 217
  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.         for(int i=0; i<5; i++)
  12.         {
  13.             Console.WriteLine("To jest liczba: {0}", b);
  14.         }
  15.        
  16.         Console.Read();
  17.     }
  18. }

Replies to Re: PrintNum rss

Title Name Language When
Add_one Balon csharp 3 Years ago.