第16週プログラム読解(7)

410 ワード

/*
*Copyright (c) 2016,         
*All rights reserved.
*     : 16     (7)
*    :    
*     : 2016.6.23
*      : v6.0
*
*     :
*     :
*     :
*/
#include
#include
using namespace std;
const char * filename ="a.txt";
int main()
{
   long l,m;
   ifstream file(filename,ios::in|ios::binary);
   l=file.tellg();
   file.close();
   cout<