返回列表 發帖

【軟體】Dev C++ 下載與安裝

本帖最後由 tonyh 於 2016-8-5 17:11 編輯

Dev-C++ 是一套免費並且開放原始碼的 C++ 程式設計軟體,附上 GNU GCC 編譯器,體積小功能強大 。它包括多頁面視窗、工程編輯器,在工程編輯器中集合了編輯器、編譯器、連接程式和執行程式。 也提供高亮度語法顯示的,以減少編輯錯誤。

Dev-C++ 4.9 32位元 下載頁

Dev-C++ 5.11 32位元/64位元 (最新版) 下載頁

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"hello"<<endl;
  7.     system("pause");
  8.     return 0;
  9.     }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     cout<<"hello"<<endl;
  7.     system("pause");
  8.     return 0;
  9. }
複製代碼

TOP

返回列表