C++/範例

维基教科书,自由的教学读本
< C++

#include <iostream>

int main(void)
{

std::cout<<"Hello World"<< std::endl;
return 0;

}