New Score :0
High Score :0
Run Best
NICE BUSINESS TYPE INDICATOR
3. ๊ธ์ ์ ์น๊ตฌ์๊ฒ ๋น๋ ธ๋๋ฐ ์ค๋์ด ๋์ ์ฃผ๊ธฐ๋ก ํ๋ .. ๊ทธ๋ฐ๋ฐ ์นด๋๊ฐ์ ๋ด์ผํ๋ ๋ ๋ ์ค๋์ธ๋ฐ... ์ด๊ฑธ ์ด์ฉ๋...
4. ์ฐ๋ฆฌ ํ์ฌ๋ ์ค์ํ ์์ฌ ๊ฒฐ์ ์ ํ ๋?
5. ์ด์ฌํ ์ผํ ๋๋ฅผ ์ํ ์ ๋ฌผ์ ์ฃผ๊ณ ์ถ๋ค. ์ด๋ค๊ฒ ์ข์๊น?
6. ์ํ์์ ํฌ์์ํ์ ์ถ์ฒ๋ฐ์๋ค. ์ด๋ค๊ฑธ ๊ฐ์ ํ์ง?
7. ํ์ฌ์์์ ๋๋?
8. ๊ฟ์์ ๊นจ์ด๋๋ 20๋ ์ ์ผ๋ก ๋์๊ฐ๋ค. ๋น์ ์ด ์ ์ผ ๋จผ์ ํ๋์ผ์?
9. ๋ด๊ฐ ์ธ์ฌ ๋ด๋น์๋ผ๋ฉด ์ ๊ท ์ ์ฌ์ ์ฑ์ฉ ์ ์ ์ผ ์ค์ํ๊ฒ ๋ณด๋๊ฒ์?
10. ํ์ฌ์ ์ ๋ง ์ซ์ดํ๋ ๋๋ฃ๊ฐ ์๋ค๋ฉด?
11. ๊ฐ๋ํ ์ง์ ๊ฐ์ฅ์ด ๋์๋ค.. ์๋ ์ ์์ผ ๋ ์ ๋ฌผ์?
12. ํ์ ํ์ฌ ์ถ๊ทผ ์คํ์ผ์?
13.ํ์ฌ ์ฒด์ก๋ํ ํ๋ ๋ ์ด๋ค. ์ค๋ ๋ญํ์ง?
14. ๋์ ์ ๋ฌด ์คํ์ผ์?
์ ํ ์์
2020/06/21 - [Tool/vsCode] - [vsCode] c++ ๊ฐ๋ฐํ๊ฒฝ ๊ตฌ์ถ
2020/06/21 - [์ธ์ด/C_C++] - [c++] choco๋ก MinGW ์ค์น ๋ฐฉ๋ฒ
Check your MinGW installation
Mingw-w64 ์ค์น๊ฐ ์ ์์ ์ผ๋ก ๋์๋์ง ํ์ธํด๋ด ๋๋ค. powerShell์์ ํด๋น ์ปค๋งจ๋๋ฅผ ์ ๋ ฅํด๋ด ๋๋ค:
g++ --version
gdb --version
์ปค๋งจ๋๊ฐ ์ ์์ ์ผ๋ก ๋์ํ์ผ๋ฉด ํ๋ก์ ํธ ๋๋ ํ ๋ฆฌ๋ฅผ ์์ฑํด์ค๋๋ค.
mkdir projects
cd projects
mkdir helloworld
cd helloworld
code .
Add a source code file
File Explorer title bar์์, New File button ์ ํด๋ฆญํ์ฌ helloworld.cpp ํ์ผ์ ์์ฑํฉ๋๋ค.
Add hello world source code
source code๋ฅผ ๋ณต๋ถ ํด์ค๋๋ค.:
#include <iostream>
#include <vector>
#include <string>
using namespace std;
int main()
{
vector<string> msg {"Hello", "C++", "World", "from", "VS Code", "and the C++ extension!"};
for (const string& word : msg)
{
cout << word << " ";
}
cout << endl;
}
Build helloworld.cpp
์๋จ ๋ฉ์ธ๋ฉ๋ด์, Terminal > Configure Default Build Task ์ ํํฉ๋๋ค. C++ compilers์ ์ํ ๋ค์ํ ๊ฒ๋ค์ด ๋์ฌ๊ฑด๋ฐ์.
์ฐ๋ฆฌ๋ g++.exe build active file ์ ํํฉ๋๋ค.
tasks.json๊ฐ ์์ฑ๋ ๊ฑด๋ฐ์ ๊ทธ๋ฅ ๋๋ก๋๋ค.
Running the build
-
helloworld.cpp ํ์ผ์ ์ ํํฉ๋๋ค.
-
ctrl + shift + B๋ฅผ ๋๋ฌ์ ์ ๋ฐฉ๋ฒ ์ฒ๋ผ ํ๊ฑฐ๋ Terminal ์ฐฝ์์ Tasks: Run Build Task์ ์ ํํฉ๋๋ค.
-
์ฑ๊ณต์ ์ผ๋ก g++ ๋น๋๊ฐ ๋๋ฉด, ์๋ ํ๋ฉด์ฒ๋ผ ์ถ๋ ฅ๋ฉ๋๋ค.:
build -
dir ๋ช ๋ น์ด๋ฅผ ์น๋ฉด helloworld.exe ํ์ผ์ด ์์ฑ๋๊ฒ์ ํ์ธํ ์ ์์ต๋๋ค.
running -
ํฐ๋ฏธ๋์์ .\helloworld.exe ๋ช ๋ น์ด๋ฅผ ์น๋ฉด ๋ฒกํฐ์ ์ ์ฅ๋ ๋ฌธ๊ตฌ๊ฐ ๋ ธ์ถ๋๋๊ฒ์ ํ์ธํ ์ ์์ต๋๋ค.
์ถ์ฒ : https://code.visualstudio.com/docs/cpp/config-mingw
Get Started with C++ and Mingw-w64 in Visual Studio Code
Configuring the C++ extension in Visual Studio Code to target g++ and gdb on a Mingw-w64 installation
code.visualstudio.com