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

Monday, September 2, 2019

Codecademy Numerical Data Types 2/8


// Sample Solution
using System;

namespace Numbers
{
  class Program
  {
    static void Main(string[] args)
    {
      // Number of pizza shops
int pizzaShops = 4332;

      // Number of employees
int totalEmployees = 86928;

      // Revenue
decimal revenue = 390819.28m;

      // Log the values to the console:
Console.WriteLine(pizzaShops);
      Console.WriteLine(totalEmployees);
      Console.WriteLine(revenue);
    }
  }
}

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts