lhs op= rhs ์ ๋ฐฉ์์ผ๋ก ์๋ํ๋ค. ex) cost += item * tax // cost = cost + (item * tax)
C++/๊ธฐํ
C++์์ boolean๊ฐ์ ๊ธฐ๋ณธ์ ์ผ๋ก 1 for true, 0 for false๋ก ์ถ๋ ฅ๋๋ค. ํ์ง๋ง, true/false๋ก ์ถ๋ ฅ๋๋ ๊ฒ์ด ๋์ฑ ์ ์ฉํ ๊ฒฝ์ฐ๋ ๋ง๋ค. ์ด๋ด ๋, ์ฝ๋์ cout
C++์์ ์ ์๋ผ๋ฆฌ ๋๋์
์ ํ๊ฒ ๋๋ฉด, ์์์ ์ดํ์ ์ซ์๋ ๋ฒ๋ ค์ง๋๋ค. #include using namespace std; int main(){ int num1 = 10; int num2 = 3; float result = num1 / num2; cout
์ฆ๊ฐ ์ฐ์ฐ์๋ ๋์ ๊ฐ์ 1์ฉ ์ฆ๊ฐ ํน์ ๊ฐ์์ํต๋๋ค. (variable++: variable = variable + 1) (variable--: variable = variable - 1) ๋ก ์ดํดํ๋ฉด ์ข์ต๋๋ค. ์ฆ๊ฐ ์ฐ์ฐ์๋ ์ ์, ์ค์, ํฌ์ธํฐ ๋ณ์์์ ์ฌ์ฉ ๊ฐ๋ฅํฉ๋๋ค. ์ฆ๊ฐ ์ฐ์ฐ์์๋ ๋๊ฐ์ง notation์ด ์์ต๋๋ค. Prefix notation: ++num Postfix notation: num++ ๊ฐ๊ฐ ์ฆ๊ฐ ์ฐ์ฐ์ statement ์ด์ ์ ์ ์ฉํ ์ง, statement ์คํ ์ดํ์ ์ ์ฉํ ์ง๋ฅผ ๊ฒฐ์ ํฉ๋๋ค. // ์ฆ๊ฐ ์ฐ์ฐ์ ์ฌ์ฉ ์์ #include using namespace std; int main(){ int counter {10}; cout