用一个吃++实现 读取文本文件,并为每行增加行号。 2.将九九乘法表写入文件并从文件中读到显示器上显示。
时间: 2024-02-18 21:05:18 浏览: 60
1. 以下是使用C++读取文本文件并为每行增加行号的示例代码:
```c++
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main() {
// 打开文件
ifstream inputFile("input.txt");
// 打开失败
if (!inputFile.is_open()) {
cout << "文件打开失败!" << endl;
return 1;
}
// 逐行读取并增加行号
int lineNumber = 0;
string line;
while (getline(inputFile, line)) {
lineNumber++;
cout << lineNumber << ": " << line << endl;
}
// 关闭文件
inputFile.close();
return 0;
}
```
在上述代码中,我们使用了C++标准库中的`ifstream`类来打开文件并读取其中的内容。使用`getline()`函数逐行读取,然后增加行号输出。
2. 以下是将九九乘法表写入文件并从文件中读到显示器上显示的示例代码:
```c++
#include <iostream>
#include <fstream>
using namespace std;
int main() {
// 打开文件并写入九九乘法表
ofstream outputFile("multiplication_table.txt");
for (int i = 1; i <= 9; i++) {
for (int j = 1; j <= i; j++) {
outputFile << j << " * " << i << " = " << i * j << "\t";
}
outputFile << endl;
}
outputFile.close();
// 从文件中读取并输出到屏幕上
ifstream inputFile("multiplication_table.txt");
if (!inputFile.is_open()) {
cout << "文件打开失败!" << endl;
return 1;
}
string line;
while (getline(inputFile, line)) {
cout << line << endl;
}
inputFile.close();
return 0;
}
```
在上述代码中,我们首先打开一个文件并将九九乘法表写入其中。然后我们再次打开文件,并使用`getline()`函数逐行读取并输出到屏幕上。注意,在读取文件之前需要先关闭文件,否则可能会出现错误。
阅读全文