-
Notifications
You must be signed in to change notification settings - Fork 0
/
Termo.cs
64 lines (58 loc) · 1.35 KB
/
Termo.cs
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
62
63
64
/*
* Created by SharpDevelop.
* User: Win10
* Date: 25/12/2019
* Time: 23:54
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using System;
namespace TrabalhoPraticoN1_Polinomios
{
/// <summary>
/// Description of Termo.
/// </summary>
public struct Termo
{
private int _Coeficiente;
private int _Grau;
//eu pus o grau já a valer 0 por default já que no minimo ele é grau 0, só para facilitar mais para a frente
public Termo(int Coeficiente, int Grau = 0)
{
_Coeficiente = Coeficiente;
_Grau = Grau;
}
public int CompareTo(int Grau)
{
return _Grau - Grau;
}
public int Coeficiente
{
get{
return _Coeficiente;
}
}
public int Grau
{
get{
return _Grau;
}
}
public override string ToString()
{
//pouco a dizer, fui testando e adicionando condições, fica mais fácil perceber assim que usando ?
string str = "";
if(_Coeficiente != 1 && _Grau > 1)
return str += _Coeficiente + "n^" + _Grau;
if(_Coeficiente != 1 && _Grau == 1)
return str += _Coeficiente + "n";
if(_Coeficiente == 1 && _Grau > 1)
return str += "n^" + _Grau;
if(_Coeficiente == 1 && _Grau == 1)
return str += "n";
if(_Grau == 0)
return str += _Coeficiente;
return str;
}
}
}