2016-06-29 Hello World! 12345678910#include <iostream>using namespace std;int main(int argc, char **argv){ cout << "Hello World!" << endl; getchar(); return 1;} 上一篇 Hello