Algo lab/installation
Windows ที่ใช้ WSL
ส่วนใหญ่จะลงมาให้อยู่แล้ว แต่ถ้าอยากมั่นใจ เปิด WSL terminal ขึ้นมาแล้วสั่ง
sudo apt install gpp
หากต้องการเขียนโค้ดด้วยโปรแกรมเชิง GUI (เช่น VS Code) ผ่านWindows ให้บันทึกไฟล์ไปยัง
\\wsl$\[distro]\home\[username]\[path-to-file]
Windows ธรรมดา
- ลงโปรแกรม MSYS2 - Start shell (by default)
- Run:
pacman -S --needed base-devel mingw-w64-x86_64-toolchain
- Update path - start Settings - search Edit environment variables for your account. - add path to C:\msys64\mingw64\bin
OS X
?
ทดสอบโปรแกรม
เปิดโปรแกรมแก้ไขเอกสารขึ้นมา แล้วคัดลอกเนื้อหาต่อไปนี้
#include <iostream>
using namespace std;
int main(void) {
int a;
cin >> a;
cout << a + 10 << endl;
return 0;
}
หลังจากนั้น สั่ง
g++ filename.cpp
และ
./a.out