hello world.cpp 98 B

1234567
  1. #include <iostream>
  2. int main()
  3. {
  4. printf("Hello world\n");
  5. system("pause");
  6. return 0;
  7. }