-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProblema_1099.cpp
80 lines (64 loc) · 1.25 KB
/
Problema_1099.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: 03/07/2021;
@nome: Soma de Ímpares Consecutivos II;
*/
#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 IntervaloAberto:public Intervalo<T>{
public:
IntervaloAberto<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 sumOdds(IntervaloAberto<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();
}
menor++;
for(menor; menor < maior; menor++)
if(menor % 2 != 0)
soma+=menor;
return soma;
}
int main(){
cin.tie(NULL);
cout.tie(NULL);
ios::sync_with_stdio(0);
int N, num1, num2;
cin >> N;
for (int i = 0; i < N; i++){
cin >> num1 >> num2;
IntervaloAberto<int> intervalo(num1, num2);
cout << sumOdds(intervalo) << endl;
}
return 0;
}