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

using namespace std;

int main(int argc, char *argv[])
{
    //
int a, b, c;
    
    a= 2;
    b= 13;
    c= a*b;
    
    printf("\n hello, world!\n c= %d\n", c);
    system("PAUSE");
    
    return EXIT_SUCCESS;
}// end of main()
// ----------------------------------------------