Skip to content

Commit

Permalink
formatting output
Browse files Browse the repository at this point in the history
  • Loading branch information
Adnan Aziz authored and Adnan Aziz committed Feb 17, 2016
1 parent 219b859 commit f39cdd2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tmp/Dutch_national_flag.cc
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,11 @@ int main(int argc, char* argv[]) {
continue;
} else {
std::cerr << "Your program produced the wrong result" << endl;
std::cerr << "Input:\n" << endl;
std::cerr << "\nInput:" << endl;
for (auto i = Aorig.begin(); i != Aorig.end(); ++i) {
std::cerr << *i << ' ';
}
std::cerr << "Output:\n" << endl;
std::cerr << "\nOutput:" << endl;
for (auto i = A.begin(); i != A.end(); ++i) {
std::cerr << *i << ' ';
}
Expand Down

0 comments on commit f39cdd2

Please sign in to comment.