[user02@FC4 Lesson09]$ cat -n by_fives.cpp
1 #include <iostream>
2 using namespace std;
3
4 int main()
5 {
6 int count;
7
8 for (count = 0; count <= 100; count += 5)
9 cout << count << ' ';
10 cout << endl;
11
12 return 0;
13 }
[user02@FC4 Lesson09]$ g++ -o by_fives by_fives.cpp[user02@FC4 Lesson09]$ ./by_fives
0 5 10 15 20 25 30 35 40 45 50 55 60 65 70 75 80 85 90 95 100
lesson_9_by_fives.cpp, Rev. 1, Last changed on 2005-08-10 03:44, 280 page hits