返回列表 發帖

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

本帖最後由 tonyh 於 2019-7-9 14:11 編輯

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

Windows 7 以下的作業系統安裝
Dev-C++ 4.9 32位元 下載頁

Windows 8 以上的作業系統安裝
Dev-C++ 5.11 32位元/64位元 (最新版) 下載頁

若不行,改用 CodeBlocks!
1. 官方下載頁
2. CodeBlocks 16.01 (for Windows,免安裝版)
3. CodeBlocks 13.12 (for MacOS)

若還是不行,就使用線上的編譯器吧!
1. repl.it
2. TutorialsPoint - Compile and Execute C++ Online
3. ideone.com

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int x = 23,y = 7;
  7.    
  8.     cout<<"x+y="<<x+y<<endl;
  9.     cout<<"x-y="<<x-y<<endl;
  10.     cout<<"x*y="<<x*y<<endl;
  11.     cout<<"x/y="<<x/y<<endl;
  12.     cout<<"x%y="<<x%y<<endl;
  13.    
  14.     system("pause");
  15.     return 0;

  16. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.      int  a;
  7.      cout<<"請輸入一整數:";
  8.      cin>>a;
  9.      cout<<"您輸入的數字是"<<a<<endl;
  10.    
  11.     system("pause");
  12.     return 0;

  13. }
複製代碼

TOP

返回列表