知識社群登入
位置: AutoCAD開放式教學 > 討論區 > 討論
"hello, world! \n"
1樓
#include <cstdlib>
#include <iostream>

using namespace std;

int main(int argc, char *argv[])
{
   //
   printf("hello, world! 0227 !@#$\n");    
   system("PAUSE");
   
   return EXIT_SUCCESS;
}// end of main()