Infinte loop

Infinte loop – это цикл который выполняется без остановки потому что его условие никогда не становится false.

Пример кода:

#include <iosream>

using namespace std;

int main()
{
int a = 0;

while(a < 5)
{
cout << “Number” << a…


This content originally appeared on DEV Community and was authored by Mahamadjon000

Infinte loop - это цикл который выполняется без остановки потому что его условие никогда не становится false.

Пример кода:

#include <iosream>

using namespace std;

int main()
{
int a = 0;

while(a < 5)
{
cout << "Number" << a << endl;
}

return 0;
}

В этом цикле никогда не завершится потому что переменная a не увеличивается и условие a < 5 всегда будет true.


This content originally appeared on DEV Community and was authored by Mahamadjon000


Print Share Comment Cite Upload Translate Updates
APA

Mahamadjon000 | Sciencx (2024-11-02T09:40:15+00:00) Infinte loop. Retrieved from https://www.scien.cx/2024/11/02/infinte-loop/

MLA
" » Infinte loop." Mahamadjon000 | Sciencx - Saturday November 2, 2024, https://www.scien.cx/2024/11/02/infinte-loop/
HARVARD
Mahamadjon000 | Sciencx Saturday November 2, 2024 » Infinte loop., viewed ,<https://www.scien.cx/2024/11/02/infinte-loop/>
VANCOUVER
Mahamadjon000 | Sciencx - » Infinte loop. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2024/11/02/infinte-loop/
CHICAGO
" » Infinte loop." Mahamadjon000 | Sciencx - Accessed . https://www.scien.cx/2024/11/02/infinte-loop/
IEEE
" » Infinte loop." Mahamadjon000 | Sciencx [Online]. Available: https://www.scien.cx/2024/11/02/infinte-loop/. [Accessed: ]
rf:citation
» Infinte loop | Mahamadjon000 | Sciencx | https://www.scien.cx/2024/11/02/infinte-loop/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.