CSCI 1301 – Lab

Clément Aubert

April 22, 2019

using System;
class Welcome
{
   static void Main()
   {
      Console.WriteLine("Welcome to the lab portion of CSCI 1301!");
   }
}

Back to the class page

January

Day # Links Content
8 Lab 01 webpageprintable documenteditable document Introduction
10 Lab 02 webpageprintable documenteditable document Editing Your First Program
15 Lab 03 webpageprintable documenteditable document Your First Project and Variables
17 Lab 04 webpageprintable documenteditable document Documentation, Numerical Operations and Replacing
17 Lab 05 webpageprintable documenteditable document Reading a String from the user, numeric datatypes
24 Lab 06 webpageprintable documenteditable document Reading numerical values from the user, Milestone #1, First Problem
29 Lab 07 webpageprintable documenteditable document First class manipulation (the Rectangle class)
31 Lab 08 webpageprintable documenteditable document Solution to the Rectangle class, write your PreciseRectangle class

February

Day # Links Content
05 Lab 09 webpageprintable documenteditable document Your own Circle class
07 Lab 10 webpageprintable documenteditable document Solution to Circle, A Room Class
19 Lab 11 webpageprintable documenteditable document Booleans, conditions, a guessing game
21 Lab 12 webpageprintable documenteditable document Basic Conditional Statements
26 Lab 13 webpageprintable documenteditable document Practicing if and switch
28 Lab 14 webpageprintable documenteditable document First while statements, user-input validation

March

Day # Links Content
05 Lab 15 webpageprintable documenteditable document Flavors of while loops and first TryParse
11 Lab 16 webpageprintable documenteditable document while and do…while loops
13 Lab 17 webpageprintable documenteditable document Hints for Project #2
20 Lab 18 webpageprintable documenteditable document Characters and strings
22 Lab 19 webpageprintable documenteditable document The LoanCalculator Class
26 Lab 20 webpageprintable documenteditable document Solutions for Project #2
28 Lab 21 webpageprintable documenteditable document Solutions to some problems of Exam #2

April

Day # Links Content
02 Lab 22 webpageprintable documenteditable document Basic array manipulation
05 Lab 23 webpageprintable documenteditable document for loops
16 Lab 24 webpageprintable documenteditable document Static Methods
18 Lab 25 webpageprintable documenteditable document Project #3
22 Lab 26 webpageprintable documenteditable document Coming back on for loop, and manipulating two arrays
24 Lab 27 webpageprintable documenteditable document Two problems