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

using namespace std;

int main(int argc, char *argv[])
{
   int a, b, c;

   a= 4;
   b= 3;
   c= a*b;
   
   printf(" a= %d, b= %d, c= %d \n", a, b, c);    
   system("PAUSE");
   
   return EXIT_SUCCESS;
}// end of main()