Search found 2 matches
- Sun Feb 08, 2004 9:09 am
- Forum: Volume 1 (100-199)
- Topic: 105 - The Skyline Problem
- Replies: 160
- Views: 32685
- Fri Jan 16, 2004 12:44 pm
- Forum: Volume 1 (100-199)
- Topic: 105 - The Skyline Problem
- Replies: 160
- Views: 32685
why runtime error????? 105 (skyline problem)
I don't understand why I got runtime error for my program. Here it is: [cpp] #include <iostream> #include <string> using namespace std; class skylines { unsigned int left[5000]; unsigned int height[5000]; unsigned int right[5000]; unsigned int most; static unsigned int i; public: skylines() : most(0...