"hello, world! \n"
(高顯忠, sjgau4311@gmail.com, 2012-07-25 06:46)
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()