一個簡單的愷撒加密程式 (轉)

amyz發表於2007-10-31
一個簡單的愷撒加密程式 (轉)[@more@]

 

#include
#include
void main(void)

 char strch,ch;
  int i,x;
 ifstream readfile;
 ofstream writefile; 
 readfile.open("1.txt",ios::in | ios::nocreate); 
if(!readfile) 

cerr<exit(0);  } 
 writefile.open("2.txt",ios::in | ios::nocreate);
 if(!writefile)
 { 
cerr<exit(0);  } 
while(!readfile.eof()) 

ch=readfile.get(); 
x=static_cast(ch); 
x=(x+3)%128;
strch=static_cast(x); 
 writefile.put(strch); 
}
}

 


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10752019/viewspace-979946/,如需轉載,請註明出處,否則將追究法律責任。

相關文章