输出helloworld

root 站长 2020-10-14 18:49:21 1
#include <iostream>

using namespace std;

int main()
{
	cout <<"#include <iostream>" << endl;
	cout << "using namespace std;" << endl;
	cout << "int main()" << endl;
	cout << "{" << endl;
	cout << "    cout << \"Hello, world!\";" << endl;
	cout << "return 0;";
	cout << "}"  << endl;
	
	return 0;
} 
{{ vote && vote.total.up }}