1 #include<stdio.h> 2 3 int main(void) 4 { 5 printf("Hello, World! "); 6 7 system("pause"); //暂停功能 8 9 return 0; 10 }