使用C++编写程序,从键盘输入10个整数,并存入文本文件data.txt中
时间: 2024-02-26 19:58:04 浏览: 104
C++从文本文件读取数据到vector中的方法
5星 · 资源好评率100%
好的,以下是使用C++编写的程序,可以从键盘输入10个整数,并将其存入文本文件data.txt中:
```c++
#include <iostream>
#include <fstream>
using namespace std;
int main() {
int nums[10];
// 从键盘输入10个整数
cout << "请输入10个整数:";
for (int i = 0; i < 10; i++) {
cin >> nums[i];
}
// 将数据保存到文件中
ofstream outfile("data.txt");
if (outfile.is_open()) {
for (int i = 0; i < 10; i++) {
outfile << nums[i] << " ";
}
outfile.close();
cout << "数据已保存到文件data.txt中" << endl;
}
else {
cout << "打开文件失败!" << endl;
}
return 0;
}
```
这个程序会依次从键盘输入10个整数,然后将这些整数以空格为分隔符保存到data.txt文件中。如果文件打开失败,则会输出相应的提示信息。
阅读全文