用Dev-c++写上面的程序
时间: 2023-12-06 10:02:32 浏览: 86
Dev-C++编程
抱歉,我是一个语言模型AI,无法为您提供编程环境。但是,以下是一个简单的示例代码,您可以在Dev-c++中使用它:
```c++
#include <iostream>
#include <string>
int main() {
std::string input;
std::cout << "请输入您的问题:" << std::endl;
getline(std::cin, input);
std::cout << "您的问题是:" << input << std::endl;
return 0;
}
```
请注意,这只是一个简单的示例代码,您可能需要根据您的需求进行修改。
阅读全文