๊ฐ๋ ์ ๋ฆฌ
ex00
์ ์ฒด์ ์ผ๋ก cpp๋ฅผ ๋ค์ด๊ฐ๊ธฐ์ ์ ํํ ๋ฆฌ์ผ ๋๋.
์ ๋ ฅ๋ค์ด์ค๋ ๋ชจ๋ ์๋ฌธ์๋ค์ ๋๋ฌธ์๋ก ๋ฐ๊ฟ์ ์ถ๋ ฅ์ ํด์ฃผ๋ฉด ๋๋ค.
$>./megaphone "shhhhh... I think the students are asleep..."
SHHHHH... I THINK THE STUDENTS ARE ASLEEP...
$>./megaphone Damnit " ! " "Sorry students, I thought this thing was off."
DAMNIT ! SORRY STUDENTS, I THOUGHT THIS THING WAS OFF.
$>./megaphone
* LOUD AND UNBEARABLE FEEDBACK NOISE *
$>
ex01
PhoneBook์ ๊ฒฝ์ฐ์๋ class ํ์์ผ๋ก ๋ด์ฉ๋ค์ ๋ด๊ณ ์์ด์ผํ๋ค.
์ต๋ 8๊ฐ์ ์ฐ๋ฝ์ฒ๋ฅผ ์ ์ฅํ ์ ์๋ค.
8๊ฐ ์ด์์ ์ฐ๋ฝ์ฒ๊ฐ ๋ค์ด์จ๋ค๋ฉด ๊ฐ์ฅ ์ค๋๋ ์ฐ๋ฝ์ฒ์ ๊ตํํ๋ค.
std::string str;
std::cin >> str;
getline(std::cin, str);
std::cin : ๋์ด์ฐ๊ธฐ๋ฅผ ๋ฐ์ ์ ์๋ค.
getline : ๋์ด์ฐ๊ธฐ๋ฅผ ํฌํจํ์ฌ ๋ฐ์ ์ ์๋ค.
ex02
ํด๊ฒฐ X
'42seoul > projects' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
| [CPP Module] 02 (0) | 2023.07.25 |
|---|---|
| [CPP Module] 01 (1) | 2021.09.16 |
| [C++] Orthodox Canonical Form (1) | 2021.09.14 |
| [Philosophers] ๊ฐ๋ ์ ๋ฆฌ (1) | 2021.09.04 |
| [Philosophers] ์ฌ์ฉ ํจ์ ์ ๋ฆฌ (1) | 2021.09.03 |
๊ฐ๋ ์ ๋ฆฌ
ex00
์ ์ฒด์ ์ผ๋ก cpp๋ฅผ ๋ค์ด๊ฐ๊ธฐ์ ์ ํํ ๋ฆฌ์ผ ๋๋.
์ ๋ ฅ๋ค์ด์ค๋ ๋ชจ๋ ์๋ฌธ์๋ค์ ๋๋ฌธ์๋ก ๋ฐ๊ฟ์ ์ถ๋ ฅ์ ํด์ฃผ๋ฉด ๋๋ค.
$>./megaphone "shhhhh... I think the students are asleep..."
SHHHHH... I THINK THE STUDENTS ARE ASLEEP...
$>./megaphone Damnit " ! " "Sorry students, I thought this thing was off."
DAMNIT ! SORRY STUDENTS, I THOUGHT THIS THING WAS OFF.
$>./megaphone
* LOUD AND UNBEARABLE FEEDBACK NOISE *
$>
ex01
PhoneBook์ ๊ฒฝ์ฐ์๋ class ํ์์ผ๋ก ๋ด์ฉ๋ค์ ๋ด๊ณ ์์ด์ผํ๋ค.
์ต๋ 8๊ฐ์ ์ฐ๋ฝ์ฒ๋ฅผ ์ ์ฅํ ์ ์๋ค.
8๊ฐ ์ด์์ ์ฐ๋ฝ์ฒ๊ฐ ๋ค์ด์จ๋ค๋ฉด ๊ฐ์ฅ ์ค๋๋ ์ฐ๋ฝ์ฒ์ ๊ตํํ๋ค.
std::string str;
std::cin >> str;
getline(std::cin, str);
std::cin : ๋์ด์ฐ๊ธฐ๋ฅผ ๋ฐ์ ์ ์๋ค.
getline : ๋์ด์ฐ๊ธฐ๋ฅผ ํฌํจํ์ฌ ๋ฐ์ ์ ์๋ค.
ex02
ํด๊ฒฐ X
'42seoul > projects' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
| [CPP Module] 02 (0) | 2023.07.25 |
|---|---|
| [CPP Module] 01 (1) | 2021.09.16 |
| [C++] Orthodox Canonical Form (1) | 2021.09.14 |
| [Philosophers] ๊ฐ๋ ์ ๋ฆฌ (1) | 2021.09.04 |
| [Philosophers] ์ฌ์ฉ ํจ์ ์ ๋ฆฌ (1) | 2021.09.03 |