摘要: #include #include //---------------------------------------------------------------------------main(){ ofstream ofile("d:\\write.txt"); if(!ofile) return; ifstream ifile("d:\\read.txt"); if(!ifile) return; char a[20]; int i=0; while(!ifile.eof()) { ifile>>a[i]; if (a[i] == 阅读全文
posted @ 2013-09-10 17:03 CPYER 阅读(194) 评论(0) 推荐(0)