我需要幫助我是新手。我在下面的文本已創建在一個單獨的文件(football.txt
)。我正在嘗試創建一個可以讀取數據並顯示的程序。C++:創建讀取文本文件的程序
Player name: Rusell William
Salaray: $8000000
Age: 20
Team: Seahawks
Position: Quarterback
這是我應得的
//This program will read the text files into display
#include <iostream>
#include <fstream>
#include <iomanip>
#include <string>
using namespace std;
int main()
{
//Declaring Variables
int salary, age;
string firstName, lastName, team, position;
//Delcaring a file.
ifstream infile;
infile.open("football.txt", ios::in);
if (!infile)
{ cout<<"File does not exist";
}
infile.close();
ofstream outfile;
//Declare on display
cout<<"**********Player Summary*********\n";
outfile.open("football.txt", ios::app);
outfile<<"football.txt";
outfile.close();
return 0;
}
沒有錯誤,但沒有顯示兩者都不是。
使用調試器或通過在互聯網上搜索「stackoverflow C++讀取文件空間分隔」來學習其他示例。 –
閱讀關於C++ I/O的更多信息。 C++ I/O不像您想象的那樣抽象(即,一個命令和您完成)。 – 101010