Skip to content

Commit 8281b70

Browse files
committed
threading using tasks example | via a vector of tasks
1 parent d2b51a6 commit 8281b70

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

threading/task_deux.cpp

+5-2
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,19 @@ T cube(T num) {
1313
int main()
1414
{
1515
cout << "Threading using tasks ... \n\n";
16-
// vector of 10 tasks
16+
// vector of 21 tasks
1717
vector<future<int>> tasks(21);
1818
// Sum of cubes
1919
int sumOfCubes = 0;
20+
cout << "sum(";
2021
for(int i=0; i<21; i++)
2122
{
2223
tasks[i] = async(&cube<int>, i);
2324
sumOfCubes += tasks[i].get();
25+
if(i<20) cout << sumOfCubes;
26+
cout << (i<19 ? " + " : "");
2427
}
25-
cout << "Sum(1^3 + 2^3 + 3^3 + ... + 20^3) = " << sumOfCubes << endl;
28+
cout << ") = " << sumOfCubes << endl;
2629

2730
return 0;
2831
}

0 commit comments

Comments
 (0)