Guest User

Untitled

a guest
Apr 27th, 2015
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.46 KB | None | 0 0
  1. #ifndef FACTOR_H
  2. #define FACTOR_H
  3. #include <iostream>
  4. #include <cmath>
  5. #include <fstream>
  6. #define PI 3.14
  7.  
  8. using namespace std;
  9.  
  10.  
  11. struct SQ{
  12.     string name;
  13.     string a;
  14.     string b;
  15.     string c;
  16. };
  17.  
  18. class Factor
  19. {
  20.     public:
  21.         double n = 0;
  22.         long long int pot = 0;
  23.         bool inf = false;
  24.         string name = "";
  25.  
  26.         Factor();
  27.         virtual ~Factor();
  28.     protected:
  29.     private:
  30. };
  31.  
  32.  
  33.  
  34. #endif // FACTOR_H
Advertisement
Add Comment
Please, Sign In to add comment