Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
evan617 committed Nov 8, 2014
1 parent b99b3c2 commit fc4edb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ch01/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

int main()
{
std::cout << "Hello, World" << endl;
std::cout << "Hello, World" << std::endl;
return 0;
}
```
Expand Down Expand Up @@ -265,7 +265,7 @@ Watch out for "sum + value" in the `cout` line.

> What happens in the program presented in this section if the input values are all equal? What if there are no duplicated values?
If the input values are all equal, it will print nothing unless you enter `EOF`.
If the input values are all equal, it will print a line which shows the count of the number you input.

If there are no duplicated values, when different values input, a new line will be printed if you click `Enter`.

Expand Down

0 comments on commit fc4edb6

Please sign in to comment.