-
Notifications
You must be signed in to change notification settings - Fork 0
/
hmw_6_1.cpp
56 lines (44 loc) · 813 Bytes
/
hmw_6_1.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
/*
Homework 6_1
Arian Owji
604649619
*/
#include <iostream>
#include <vector>
#include <string>
#include <sstream>
using namespace std;
int sum(vector<int> a) {
int n = a.size();
int sum = 0;
for (int i = 0; i < n; i++) {
if (i != 0 && ((i % 2) == 1)) {
sum -= a[i];
}
else {
sum += a[i];
}
}
return sum;
}
int main() {
char response = 'y';
while (response == 'y') {
string input;
int number;
vector<int> list;
std::cout << "Enter a list of integers: ";
getline(cin, input);
istringstream stream(input);
while (stream >> number) {
list.push_back(number);
}
std::cout << "The alternate sum = " << sum(list) << endl << endl;
std::cout << "Continue <y/n>? ";
std::cin >> response;
std::cout << endl;
cin.clear();
cin.ignore(1000, '\n');
}
return 0;
}