Guest User

Untitled

a guest
Jun 19th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.67 KB | None | 0 0
  1. // Casey Provost
  2. // 494673
  3.  
  4. // contains the definition of the 'State' class.
  5.  
  6.  
  7. class State {
  8.      
  9.       public:
  10.              
  11.              void input();
  12.              void compute();
  13.              void garbage();
  14.              void fillmap();
  15.              void display();
  16.              
  17.       private:
  18.              
  19.              int px, py;
  20.              double unhappiness1,unhappiness2,unhappiness3,unhappiness4;
  21.              double d1,d2,d3,d4;
  22.              double avgU;
  23.              string citycoor[26][26];
  24.              int citypop1,citypop2,citypop3,citypop4;
  25.              int c1cx,c1cy,c2cx,c2cy,c3cx,c3cy,c4cx,c4cy;
  26.              int choice;
  27.       };
Add Comment
Please, Sign In to add comment