摘要: #include<iostream>#include<string.h>using namespace std; //申明命名空间//error()函数void error(){ cout<<"/nCan not open the file."<<endl; exit(1);//退出}int main(void){ FILE *fp;//定义一个文件指针 char str[80]; cout << "Input:";//从键盘读取输入 cin.getline(str,80); if( (fp=f 阅读全文
posted @ 2011-08-12 21:55 hnrainll 阅读(595) 评论(0) 推荐(0) 编辑