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

Wednesday, September 4, 2019

Codecademy Fields 3/12


// Sample Solution
///////////////////////////////////////////////////
// Forest.cs code
using System;

namespace BasicClasses
{
  class Forest
  {
    public string name;
    public int trees;
    public int age;
    public string biome;
  }
}
///////////////////////////////////////////////////
// Program.cs code
using System;

namespace BasicClasses
{
  class Program
  {
    static void Main(string[] args)
    {
      Forest f = new Forest();
      f.name = "Amazon";
      f.trees = 390000000;
      f.age = 55000000;
      f.biome = "Yes, I think the Amazon is a biome.";
      Console.WriteLine(f.name);
    }
  }
}

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts