使用C++打印hello world

方法1:ios #include <iostream> //命名空间 using namespace std; void main() { cout<<"hello world !"<<endl; } 方法2:spa #include <iostream> void main() { std::cout<<"hello world !"<<std::endl; } 方法3:code #i
相关文章
相关标签/搜索