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

Monday, September 2, 2019

Codecademy Modulo 5/8


// Sample Solution
using System;

namespace ClassTeams
{
  class Program
  {
    static void Main(string[] args)
    {
      // Number of students
int students = 18;

      // Number of students in a group
int groupSize = 3;

      // Does groupSize go evenly into students?
Console.WriteLine(students % groupSize);
//Only a groupSize of 3 will result in
      //zero remainder
    }
  }
}

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts