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

Wednesday, September 4, 2019

Codecademy Do...While Loop 3/8


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


This is an example of scrolling text using Javascript.

Popular Posts