Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ The While Loop in C++ | Section
C++ Loops

bookThe While Loop in C++

メニューを表示するにはスワイプしてください

Loops are essential to programming because they let you repeat actions or tasks without writing the same code over and over again.

The while loop is one of the most important constructs in programming. To illustrate the idea behind a while loop, imagine you love coffee so much that you visit a coffee shop every day.

You keep going there as long as it's open and your routine remains unchanged, repeating the same actions with each visit. However, once the shop closes, you stop visiting.

A while loop works exactly the same, it performs a series of actions over and over again as long as a particular condition remains true, and it stops executing when that condition becomes false.

In C++ to create this loop, we use the while keyword. Following the keyword, we specify the condition within parentheses, and then within curly braces, we provide the instructions to be executed repeatedly as long as the condition remains true.

// keyword    condition		body
while            ( )         { }
main.cpp

main.cpp

copy
123456789101112
#include <iostream> int main() { bool coffee_shop_is_open = true; // Condition // Loop executes as long as the coffee shop is ope while (coffee_shop_is_open) // Keyword (Condition) { // Body of the loop, this block will be executed repeatedly std::cout << "I am going to the coffee shop!" << std::endl; } }
Note
Note

This is an infinite loop because the condition always remains true. We will consider infinite loops in detail in future chapters.

There also can be multiple conditions in the loop using operators && and ||. For example, In the context of the coffee shop, we will visit it when it is open and when we have money. Both of these conditions must be met for us to continue going there. If the coffee shop is open but we don't have money, we will not go there.

question mark

Which of the following is the correct structure for a while loop?

正しい答えを選んでください

すべて明確でしたか?

どのように改善できますか?

フィードバックありがとうございます!

セクション 1.  1

AIに質問する

expand

AIに質問する

ChatGPT

何でも質問するか、提案された質問の1つを試してチャットを始めてください

セクション 1.  1
some-alt