ผลต่างระหว่างรุ่นของ "Algo lab/installation"
ไปยังการนำทาง
ไปยังการค้นหา
Neizod (คุย | มีส่วนร่วม) |
Neizod (คุย | มีส่วนร่วม) |
||
แถว 27: | แถว 27: | ||
= OS X = | = OS X = | ||
+ | |||
+ | ? | ||
+ | |||
+ | = ทดสอบโปรแกรม = | ||
+ | |||
+ | เปิดโปรแกรมแก้ไขเอกสารขึ้นมา แล้วคัดลอกเนื้อหาต่อไปนี้ | ||
+ | |||
+ | <syntaxhighlight lang="cpp"> | ||
+ | #include <iostream> | ||
+ | using namespace std; | ||
+ | int main(void) { | ||
+ | int a; | ||
+ | cin >> a; | ||
+ | cout << a + 10 << endl; | ||
+ | return 0; | ||
+ | } | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | หลังจากนั้น สั่ง | ||
+ | |||
+ | <syntaxhighlight lang="cpp"> | ||
+ | g++ filename.cpp | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | และ | ||
+ | |||
+ | <syntaxhighlight lang="cpp"> | ||
+ | ./a.out | ||
+ | </syntaxhighlight> |
รุ่นแก้ไขเมื่อ 00:30, 19 สิงหาคม 2567
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