-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTermino.H
More file actions
executable file
·71 lines (44 loc) · 801 Bytes
/
Copy pathTermino.H
File metadata and controls
executable file
·71 lines (44 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*Clase Termino, usada para formar polinomios
Realizada por:
Erik Velasquez*/
#ifndef TERMINO_H
#define TERMINO_H
#include<iostream>
using namespace std;
class Termino
{
float coef; //coeficiente
int exp; //exponente
public:
Termino(){};
~Termino(){};
//obtener el coeficiente
float get_coef()
{
return coef;
};
//obtener el exponente
int get_exp();
//asignar coeficiente
void set_coef(float p)
{
coef=p;
};
//asignar exponente
void set_exp(int );
//sobrecarga operador <<
friend ostream& operator << (ostream&, const Termino&);
//sobrecarga operador >>
friend istream& operator >> (istream&, Termino&);
};
//obtener exponente
int Termino::get_exp()
{
return exp;
}
//asignar exponente
void Termino::set_exp(int x)
{
exp=x;
}
#endif