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
Mahamadjon000 | Sciencx (2024-11-02T09:40:15+00:00) Infinte loop. Retrieved from 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.