題目:
https://onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=19&page=show_problem&problem=1724
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
| #include <iostream> #include <algorithm> #include <vector>
using namespace std;
int main(){ int t; cin >> t;
int a, b; for(int cases = 1; cases<=t; cases++){ cin >> a >> b; if(a > b) swap(a, b); vector<int> arr; for(int i=a; i<=b; ++i){ if(i % 2 == 1) arr.push_back(i); }
int sum = 0; for(int num : arr){ sum += num; }
cout << "Case " << cases << ": " << sum << '\n'; } return 0; }
|