返回列表 發帖

我的第一支程式

在螢幕上顯示 hello 字樣.
  1. #include<cstdlib>  //載入一些系統的資源檔 library
  2. #include<iostream> //EX: cout  cin  
  3. using namespace std; //告訴我們的編譯器 每一行程式後面加上; 目的在於讓程式碼存放在namespace當中

  4. int main() //C++基本框架 (所有的程式碼都需要寫在 main())
  5. {
  6.    
  7.     cout << "HelloWorld" <<endl; //字串
  8.    
  9.     system("pause"); //當按下任意鍵時 自動關閉程式
  10.     return 0;
  11. }
複製代碼

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

TOP

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

TOP

#include<cstdlib>
#include<iostream>
using namespace std;

int main()
{
    cout<<"yee"<<endl;
   
   
    system("pause");
    return 0;
}
[code][/code]

TOP

返回列表