// Sample Solution
using System;
namespace JumpStatements
{
class Program
{
static void Main(string[] args)
{
bool buttonClick = true;
int timesGoneOff = 0;
do
{
Console.WriteLine("BLARRRRR");
timesGoneOff++;
if(timesGoneOff==3){
break;
}
} while(!buttonClick);
}
}
}
No comments:
Post a Comment