Forum: C++ Mar 6th, 2005 |
| Replies: 9 Views: 1,757 #include <iostream>
#include <cmath>
using namespace std;
class point
{
public:
point(int xcoord , int ycoord); //constructor
point(); |
Forum: C++ Feb 25th, 2005 |
| Replies: 9 Views: 2,072 ok had a chance to skim.... but void main?? main always returns a value...
int main(void)
or
int main()
not sure what the problems are could you state them? and please use code tags |