|
Post by Admin on Jun 3, 2014 17:37:28 GMT -5
using System; class Program { static void Main() { Console.WriteLine("Please enter your target?"); int UserTarget = int.Parse(Console.ReadLine());
int Start = 0;
while (Start <= UserTarget) { Console.Write(Start + " "); Start = Start + 2; } } }
|
|