2009年9月24日 星期四

第一個C++程式

// prog1_1,第一個 C++程式
#include
#include
using namespace std;
int main(void)
{
cout << "Hello, C++" << endl; // 印出Hello,C++
system("pause");
return 0;
}