先写个所有语言一开始都用的一个程序 ”Hello world“
#include <iostream>
int main()
{
std::cout << "Hello world!" << std::endl;
return 0;
}
先写个所有语言一开始都用的一个程序 ”Hello world“
#include <iostream>
int main()
{
std::cout << "Hello world!" << std::endl;
return 0;
}