We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Link to the File https://github.com/SoftUni/Programming-Basics-Book-CSharp-EN/blob/master/Content/Chapter-7-1-complex-loops/do-while-loop/do-while-loop.md#example-calculating-factorial
Description --- we are to decrement the value (n--) <=> (n-1), however it is written that we decrease by -1 => (n - (-1)) = n+1
Current (Wrong) Text We decrease the value of n by -1.
Corrected (New) Text We decrease the value of n by 1.
The text was updated successfully, but these errors were encountered: