- C语言文件的创建与建立 推荐度:
- 相关推荐
c语言—文件的创建与建立
今天要介绍的是有关文件的创建与读取的语法,事实上,c语言中对于这方面的已经有相当经典且应用相当广泛的语法了,但是我今天想讲一讲关于c++中的相关语法,以下仅供参考!
以下是代码:
首先是文件的创建:
# include
# include
# include
using namespace std;
int main() {
ofstream outclientfile("clients.dat", ios::out);
if (!outclientfile) {
cerr << "file could not be opend" << endl;
exit(1);
}
cout << "enter the account,name,and balance." << endl;
cout<< "enter end-of-file to end input. ?";
int account;
char name[30];
double balance;
while (cin >> account >> name >> balance) {
outclientfile << account << " " << name << " " << balance << endl;
cout << "?";
}
system("pause");
return 0;
}
以下是文件的读取:
# include
# include
# include
# include
# include
using namespace std;
void outputline(int, const string, double);
int main() {
ifstream inclientfile("clients.dat", ios::in);
if (!inclientfile) {
cerr << "file could not be opened" << endl;
exit(1);
}
int account;
char name[30];
double balance;
cout << left << setw(10) << "account" << setw(13) << "name"
<< "balance" << endl<<fixed<<showpoint;
while (inclientfile >> account >> name >> balance) {
outputline(account, name, balance);
}
system("pause");
return 0;
}
void outputline(int account, const string name, double balance) {
cout << left << setw(10) << account << setw(13) << name
<< setw(7) << setprecision(2) << right << balance << endl;
}
【c语言—文件的创建与建立】相关文章:
C语言文件的创建与建立08-12
怎么利用c语言创建excel文件08-13
C语言文件08-28
C语言的文件概念07-18
C语言文件操作教程09-07
C语言头文件封装06-25
C语言项目中.h文件和.c文件的关系详解10-01
C语言文件的使用方法08-01
C语言文件操作函数freopen详解07-13
C语言怎样创建windows窗口08-19