- 05/16/2007
The Final Exam will take place on Wednesday, May 23 at CP302,
from 12:00 pm till 2:00 pm.
If you need to see me before the final, I'll be available on Monday, May 21 from 10:30 am till 12:00 pm at the Lab (CP302).
- 05/09/2007
Slides for the lecture lecture22.pdf,
programs: getline.cpp,
isdigit.cpp,
string1.cpp
- 05/09/2007
Slides for the lecture lecture21.pdf,
programs: C_strings.cpp
- 05/07/2007
Slides for the lecture lecture20.pdf,
programs: augment.cpp,
selection-sort.cpp
- 05/02/2007
Slides for the lecture lecture19.pdf,
programs: sum.cpp,
greatest-element.cpp,
dynamic-allocation.cpp
- 04/25/2007
Slides for the lecture lecture18.pdf,
programs: get-put.cpp
- 04/23/2007
Slides for the lecture lecture17.pdf,
programs: i-o-example-modified-more.cpp,
input-file-name.cpp
- 04/16/2007
Slides for the lecture lecture16.pdf,
programs: i-o-example.cpp, i-o-example-modified.cpp
- 04/11/2007
Slides for the lecture lecture15.pdf,
program: ordering.cpp
- 03/28/2007
Slides for the lecture lecture14.pdf,
program: call-by-reference-example.cpp
- 03/21/2007
Slides for the lecture lecture13.pdf,
program: global-vars-example.cpp
- 03/19/2007
Slides for the twelth lecture lecture12.pdf,
programs: programmer-defined-function.cpp ,
sqrt-example.cpp
- 03/15/2007
The due date for the Midterm Programming Projects is Wednesday, March 21st.
- 03/14/2007
Slides for the eleventh lecture lecture11.pdf,
programs: for-loop.cpp ,
for-loop-testing.cpp
- 03/12/2007
Slides for the tenth lecture lecture10.pdf,
programs: switch-example.cpp,
switch-menu.cpp ,
switch-example-user-stops.cpp ,
for-loop.cpp
- 03/07/2007
Slides for the eight and nineth lectures lecture8.pdf, lecture9.pdf
programs: while-loops.cpp, do-while-loop.cpp
- 02/26/2007
Slides for the seventh lecture lecture7.pdf
The sample program (account): account-withdraw.cpp
- 02/21/2007
Slides for the sixth lecture lecture6.pdf
We will have Test №1 on March 5th. The Test consists of three parts.
In the first part you will be asked to provide definition/description of notions
(e.g. what is a hardware, what is the main memory, how many bits in one byte and, so on)
In the second part you will be given a program with some errors and will be asked to fix it (to make it compilable).
In the third part you will be asked to write a program.
- 02/15/2007
Slides for the fifth lecture lecture5.pdf
- 02/08/2007
Slides for the fourth lecture lecture4.pdf
In class you were asked to write a program; the description of the assignment is on the last slide in the fourth lecture. Next time those who didn't finish the program
continue to work on it.
Please, note that we don't meet on Monday, February 12 (Lincoln's Birthday).
So next time we'll meet is Wednesday, February 14.
Thursday, February 15 is on Monday's schedule, so we'll have class.
Next Monday, February 19th, there will be no classes either.
- 02/05/2007
Slides for the third lecture lecture3.pdf
The C++ program we did in class (sum of two integers): sum-of-two-numbers.cpp
We also modified the program : made the program that find the product of three numbers (a*b*c)
- 01/31/2007
Slides for the second lecture: lecture2.pdf
Other slides will be posted after next class.
The C++ program we did in class:
#include <iostream>
using namespace std;
int main()
{
int a, b;
cout << "Hello everybody!\n";
cin >> a;
cin >> b;
cout << a+b;
return 0;
}
- 01/30/2007
If you'd like to install a C++ compiler on your home machine, here is the link to the
Microsoft Visual C++ 2005 Express Edition (free):
http://msdn.microsoft.com/vstudio/express/visualc/
- 01/29/2007
Welcome to the course!
|