2015年4月30日
摘要: 1 #include 2 #include 3 #define WAY "save.txt" 4 int main(int argc,int argv[]) 5 { 6 FILE *fp_read,*fp_write; 7 8 fp_read=fopen(WAY,"r+"... 阅读全文
posted @ 2015-04-30 21:30 Evence 阅读(644) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 #include 5 const int N=10; //修改随机数据量 6 bool onOroff=1; ... 阅读全文
posted @ 2015-04-30 16:00 Evence 阅读(251) 评论(0) 推荐(0) 编辑
摘要: 第一题:101个数中只有一个数字不同,找出这个数第二题:102个数字,有两个互不相同的数和其他数字不同,找出这两个数 1 int main(int argc,char* argv[]) 2 { 3 //101个数有一个不一样的 4 int arr[101]; 5 for(in... 阅读全文
posted @ 2015-04-30 14:54 Evence 阅读(300) 评论(0) 推荐(0) 编辑