码迷,mamicode.com
首页 > 其他好文 > 详细

The Infinite Loop belong to loop statement

时间:2019-05-14 15:06:57      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:test   tip   can   ret   www   for   most   nes   .com   

#include <iostream>
using namespace std;
 
int main () {
   for( ; ; ) {
      printf("This loop will run forever.\n");
   }

   return 0;
}


A loop statement allows us to execute a statement or group of statements multiple times
and following is the general from of a loop statement in most of the programming languages −


while loop

Repeats a statement or group of statements while a given condition is true. It tests the condition before executing the loop body.for loop

Execute a sequence of statements multiple times and abbreviates the code that manages the loop variable.

do...while loop

Like a ‘while’ statement, except that it tests the condition at the end of the loop body.

nested loops

You can use one or more loop inside any another ‘while’, ‘for’ or ‘do..while’ loop.

https://www.tutorialspoint.com/cplusplus/cpp_loop_types.htm

 



The Infinite Loop belong to loop statement

标签:test   tip   can   ret   www   for   most   nes   .com   

原文地址:https://www.cnblogs.com/poission/p/10861953.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!