// Sample Solution
using System;
namespace DoWhileLoop
{
class Program
{
static void Main(string[] args)
{
bool buttonClick = true;
do
{
Console.WriteLine("BLARRRRRRRRRR");
} while(!buttonClick);
Console.WriteLine("Time for a five minute break.");
}
}
}
No comments:
Post a Comment