while ๋ฌธ

Syntax // syntax while (expression) statement; // or while (expression) { statement(s); } ์ค‘์š”ํ•œ ์ ์€ infinite loop์ด ๋˜์ง€ ์•Š๋„๋ก ์‹ ๊ฒฝ์“ฐ๋Š” ๊ฒƒ์ž…๋‹ˆ๋‹ค. Example Codes // Example 1 #include using namespace std; int main(){ int i {1}; while (i
Chan Lee
'while ๋ฌธ' ํƒœ๊ทธ์˜ ๊ธ€ ๋ชฉ๋ก