-
Notifications
You must be signed in to change notification settings - Fork 1
/
Problema_1101.cpp
80 lines (65 loc) · 1.27 KB
/
Problema_1101.cpp
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*
@autor: Victor E. B. Rodrigues;
@data: 04/07/2021;
@nome: Sequência de Números e Soma;
*/
#include <bits/stdc++.h>
using namespace std;
template<class T>
class Intervalo{
private:
T comeco;
T fim;
public:
Intervalo(){}
Intervalo(T comeco, T fim){
this->comeco = comeco;
this->fim = fim;
}
T getComeco(){
return comeco;
}
T getFim(){
return fim;
}
};
template<class T>
class IntervaloFechado:public Intervalo<T>{
public:
IntervaloFechado<T>(T x, T y) : Intervalo<T>(x,y){}
bool contains(T &num){
if(num >= this->getComeco() && num <= this->getFim())
return true;
return false;
}
};
template<typename T>
T sum(IntervaloFechado<T> &intervalo){
int menor, maior, soma = 0;
if (intervalo.getComeco() > intervalo.getFim()){
maior = intervalo.getComeco();
menor = intervalo.getFim();
} else{
menor = intervalo.getComeco();
maior = intervalo.getFim();
}
for(menor; menor <= maior; menor++){
cout << menor << " ";
soma+=menor;
}
return soma;
}
int main(){
cin.tie(NULL);
cout.tie(NULL);
ios::sync_with_stdio(0);
int num1, num2;
while(cin >> num1 >> num2){
if (num1 <=0 || num2 <=0)
break;
IntervaloFechado<int> intervalo(num1, num2);
int soma = sum(intervalo);
cout << "Sum=" << soma << endl;
}
return 0;
}