返回列表 發帖
#include<iostream>//引入
#include<cstdlib>//c語言 std=standard 標準的 lib=library
using namespace std;//使用命名空間為std
int main()//主程式
{
    cout<<"哈囉"<< endl <<"你好"<<endl;
    system("pause");
    return 0;
}

TOP

  1. #include<iostream>//引入
  2. #include<cstdlib>//c語言 std=standard 標準的 lib=library
  3. using namespace std;//使用命名空間為std
  4. int main()//主程式
  5. {
  6.     cout<<"哈囉"<< endl <<"你好"<<endl;
  7.     system("pause");
  8.     return 0;
  9. }
  10.    
複製代碼

TOP

返回列表