摘要: 有如下程序:#include <iostream>#include <fstream>using namespace std;void fuc(ofstream file){ file<<"jarvischu"<<endl;}int main(int argc,char* argv[0]){ for(int i=0;i<argc;i++){ cout<<argv[i]<<endl; } ofstream file("test.txt"); fuc(file); return 0 阅读全文
posted @ 2011-04-29 20:52 JarvisChu 阅读(331) 评论(0) 推荐(0) 编辑