Instructor:     
Tibrewal Abhilasha
CS 101
 

 

Projects

Program 0

  • Program 0 (doc)
    Simple example using C++ two module project on the Sun UNIX system as well as on a PC compiler such as Visual C++. (Jar.cpp)

Program 1

Program 2

  • Program 2 (doc)
    Which will compute the sizes of clothing based on some measurements from a client.

Program 3

  • Program 3 (doc)
    Which reads student names, social security numbers, and test scores from an input file named infile. The program then computes a weighted average, finds the appropriate letter grade, and displays the formatted output.

Program 4

  • Program 4 (doc)
    Use of classes and objects. The class named Fraction will hold two data members called top and bottom. The class will have 2 constructors, one the default (no parameters) and the other will take two int parameters.

Program 5

  • Program 5 (doc)
    Modification of the Fraction class that was implemented for Program # 4 such that it overloads the operators +, *, / and the extraction operator <<.

Program 6

  • Program 6 (doc)
    The Class PokerHand will be a representation of a poker hand that is basically a set of five unique cards.

Program 7