00001
00002
00003
00004
00005 #if !defined( _FIRST_LAB_HPP_ )
00006 #define _FIRST_LAB_HPP_
00007
00008
00009 #include <iostream>
00010
00012 using namespace std;
00013
00015 const gc_dots_1 = 100;
00016
00018 class first_lab_t {
00019
00020 private:
00022 float x[gc_dots_1], y[gc_dots_1];
00023
00025 int number;
00026
00028 int counter;
00029
00030 public:
00031
00035 first_lab_t();
00036
00039 ~first_lab_t();
00040
00042
00048 void
00049 input();
00050
00052 void
00053 solution();
00054
00056 void
00057 output();
00058
00059 };
00060
00061 #endif