Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #ifndef FACTOR_H
- #define FACTOR_H
- #include <iostream>
- #include <cmath>
- #include <fstream>
- #define PI 3.14
- using namespace std;
- struct SQ{
- string name;
- string a;
- string b;
- string c;
- };
- class Factor
- {
- public:
- double n = 0;
- long long int pot = 0;
- bool inf = false;
- string name = "";
- Factor();
- virtual ~Factor();
- protected:
- private:
- };
- #endif // FACTOR_H
Advertisement
Add Comment
Please, Sign In to add comment