Appearance
HelloWorld
让我们写一个简单的hello world程序,开启c++的学习生涯!
cpp
#include <iostream>
int main() {
std::cout << "hello world!";
return 0;
}
输出:
hello world!
注:本教程使用c++23标准书写