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

Wednesday, September 4, 2019

Codecademy While Loop 2/8


// Sample Solution
using System;

namespace WhileLoop
{
  class Program
  {
    static void Main(string[] args)
    {
      int emails = 20; 
      while(emails > 0)
      {
        emails--;
        Console.WriteLine("Deleting an email!");
        Console.WriteLine($"{emails} left.");
      }
      Console.WriteLine("INBOX ZERO ACHIEVED!");
    }
  }
}

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts