FILE *fopen(char * filename,char * mode) filename对应的实参是一个字符串,表示需要打开的文件的文件名(可以包括文件的路径),该实参可以是一个字符串常量,也可以是一个字符指针; mode对应的实参也是一个字符串,对应了文件的操作模式: “r”:以只读方式 Read More
posted @ 2017-10-15 21:59 木小猪 Views(397) Comments(0) Diggs(0) Edit
#include <iostream>#include<cstdio>using namespace std;int main(){ freopen("input.txt","r",stdin); freopen("output.txt","w",stdout); int a,b; while(ci Read More
posted @ 2017-10-15 10:55 木小猪 Views(938) Comments(0) Diggs(0) Edit