Tagged Questions

13
votes
10answers
6k views

C++ Practice Problems

I am learning C++ currently and am probably at the intermediate level. I am running out of ideas for what to do with my current programming skill. And, as the title puts it I need some practice ...
0
votes
2answers
65 views

Why is the extraction operator not working?

I trying out some problems in Google's Code Jam. For the question Store Credit, I have the following code in C++: if (input.is_open()) { getline(input, line); ss << line; ss ...