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

Tuesday, September 3, 2019

Codecademy Ternary Operators Statements 6/7


// Sample Solution
using System;

namespace TernaryOperator
{
  class Program
  {
    static void Main(string[] args)
    {
      int pepperLength = 4;
string message = (pepperLength >= 3.5) ? "ready!" : "wait a little longer";
Console.WriteLine(message);
    }
  }
}

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts