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

Tuesday, September 3, 2019

Codecademy If Statements 2/7


//Sample Solution
using System;

namespace IfStatement
{
  class Program
  {
    static void Main(string[] args)
    {
      int socks = 3;
if(socks <= 3){
        Console.WriteLine("Time to do laundry!");
      } else {
        Console.WriteLine("Not yet time to do laundry!");
      }
      socks = 6;
if(socks <= 3){
        Console.WriteLine("Time to do laundry!");
      } else {
        Console.WriteLine("Not yet time to do laundry!");
      } 
    }
  }
}

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts