(C++) 5.4 while 문

이준우·2021년 10월 17일
0
post-custom-banner

while 문에 대해 알아보자. 아주 간단한 예부터 확인하자.

#include <iostream>

using namespace std;

int main()
{
	int count = 0;

	while (true)
	{
		cout << count << endl;
	
	}

	return 0;
}

위의 코드를 실행하면 무한루프로 도는 것을 확인할 수 있다. 무한 루프에 써야하는 경우에는 while문이 좋다.

#include <iostream>

using namespace std;

int main()
{
	int count = 0;

if_loop:
	cout << count << endl;
	++count;

	if (count < 10)
		goto if_loop;

	/*while (1)
	{
		cout << count << endl;
		++count;

		if (count == 10)
			break;
	}*/

	return 0;
}

반복문과 goto문은 뭔가 밀접한 관련이 있어 작성해보았다. goto문은 요즘 아예 안쓰이지만 이러한 것도 있구나하고 넘어가길 바란다.

profile
꿈꾸는 CV
post-custom-banner

0개의 댓글