Quotes help make search much faster. Example: "Practice Makes Perfect"

Wednesday, September 4, 2019

Codecademy Jump Statements 7/8


// 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


This is an example of scrolling text using Javascript.

Popular Posts