-
Notifications
You must be signed in to change notification settings - Fork 3.9k
New issue
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
C++: Loops #6399
C++: Loops #6399
Conversation
content/cpp/concepts/loops/loops.md
Outdated
|
||
This manual approach simply doesn't scale well for larger numbers of repetitions. | ||
|
||
## What is a Loop? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Combine this section with the above one. Its one and the same thing
content/cpp/concepts/loops/loops.md
Outdated
## Benefits of Loops | ||
|
||
Loops offer several advantages in programming: | ||
|
||
1. **Code Reduction**: Loops significantly reduce the amount of code needed for repetitive tasks. | ||
2. **Maintainability**: Changes can be made in a single location rather than updating multiple instances of the code. | ||
3. **Scalability**: Loops can handle varying numbers of iterations, from a few to millions, without changing the core logic. | ||
4. **Readability**: Well-structured loops make the intention of repetitive code clearer. | ||
5. **Flexibility**: Loops can adapt to different conditions and requirements at runtime. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No need to add benefits section
This PR is updated @Radhika-okhade 🫡 |
Thank you for contributing to Codecademy docs @mamtawardhani. The entry looks good to be merged. |
👋 @mamtawardhani 🎉 Your contribution(s) can be seen here: https://www.codecademy.com/resources/docs/cpp/loops Please note it may take a little while for changes to become visible. |
Description
added [Edit] C++: Loops
Issue Solved
closes #6396
Type of Change
Checklist
main
branch.Issues Solved
section.