Added end of program to print

This commit is contained in:
Samer Afach 2017-01-15 13:34:03 +00:00
parent 1a56e9bc1d
commit 72ea113773
1 changed files with 1 additions and 0 deletions

View File

@ -33,5 +33,6 @@ int main()
for (unsigned int i = 0; i < nums.size(); ++i) {
std::cout<<"Sum from 0 to " << nums[i] << " is: " << numsResults[i] <<std::endl;
}
std::cout<<"End of program reached."<<std::endl;
return 0;
}