学习
[ 本帖最后由 Artless 于 2011-6-3 02:16 编辑 ]
2011-06-03 02:12
2011-06-03 07:26
2011-06-03 09:03
程序代码:#include <iostream>
using namespace std;
int main (int argc, char *argv[])
{
cout << "Hello World!" << endl;
cin.get();
cout << "Hello World!" << endl;
cout << "Press ENTER to continue..." << endl;
cin.get();
return 0;
}
2011-06-04 08:10