Search found 1 match

by infinity
Thu Mar 20, 2003 8:15 pm
Forum: Volume 100 (10000-10099)
Topic: 10078 - The Art Gallery
Replies: 20
Views: 8996

10078

#include <iostream>
using namespace std;

class Point
{
public:
Point( int, int );
int GetX() { return x; }
int GetY() { return y; }
private:
int x;
int y;
};

Point::Point( int GetX, int GetY )
{
x = GetX;
y = GetY;
}

class Line
{
public:
Line( Point *, Point * );
int ifSameSite( Point ...

Go to advanced search