⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 filecopy.cpp

📁 用robocup2d改编设计的2d球队。
💻 CPP
字号:
#include <iostream>#include <fstream>#define BUFFSIZE 512using namespace std;int main(int arg,char *args[]){	if(arg!=3)	{		cout<<"Command error!!"<<endl;		exit(1);	}	else 	{		ifstream fin(args[1]);		if(!fin)		{			cout<<"open file error!!"<<endl;			exit(1);		}		ofstream fout(args[2]);		if(!fout)		{			cout<<"file create error!!"<<endl;			exit(0);		}		fin.unsetf(ios_base::skipws);		char c;		while(fin>>c)		{			fout<<c;		}	}	return 1;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -