用动态数组来保存学生的信息,添加学生信息时姓名为“姓名”+“i”的形式,使用to_string(i),将i转换为字符怎么写c++
时间: 2024-02-20 18:58:34 浏览: 53
存储学校学生信息C++编写
4星 · 用户满意度95%
在 C++ 中,可以使用 std::to_string() 函数将整数转换为字符串。示例代码如下:
```c++
#include <iostream>
#include <string>
#include <vector>
using namespace std;
int main() {
vector<string> students;
int n = 5;
for (int i = 1; i <= n; i++) {
string name = "姓名" + to_string(i);
students.push_back(name);
}
for (int i = 0; i < students.size(); i++) {
cout << students[i] << endl;
}
return 0;
}
```
在上面的示例代码中,我们使用 std::to_string() 函数将整数 i 转换为字符串,并将其与“姓名”拼接起来作为学生的姓名。将学生信息保存在 vector 容器中,并遍历输出。
阅读全文