用c++写,只能用<iostream>和using namespace std;
时间: 2024-10-11 09:12:57 浏览: 16
使用include <iostream>时一定要加using namespace std
在C++中,如果你只能使用`<iostream>`头文件和`using namespace std;`,你可以编写一个简单的控制台输入输出程序,例如一个基本的"Hello World!"程序。这是一个例子:
```cpp
#include <iostream>
using namespace std;
int main() {
// 输出 "Hello, World!"
cout << "Hello, World!\n";
// 接收用户输入并显示出来
string input;
cout << "Please enter your name: ";
getline(cin, input);
cout << "Nice to meet you, " << input << "!\n";
return 0;
}
```
这个程序首先包含了`<iostream>`头文件,它包含了标准的输入输出流操作,如`cout`和`getline`。`using namespace std;`使得我们可以在代码中直接使用`std`命名空间中的元素,而无需每次都写全。
阅读全文