檔案的讀寫 加密

2021-07-22 16:10:15 字數 1612 閱讀 9556

#define _crt_secure_no_warnings

#include "stdlib.h"

#include "stdio.h"

#include "string.h"

void main()

//讀取

char buff[50];

while(fgets(buff, 50, fp))

//關閉

fclose(fp);

system("pause");

getchar();

}

void main()

void main()

//關閉流

fclose(read_fp);

fclose(write_fp);

getchar();

}

void main()
異或規則:

1. a ⊕ a = 0

2. a ⊕ b = b ⊕ a

3. a ⊕b ⊕ c = a ⊕ (b ⊕ c) = (a ⊕ b) ⊕ c;

4. d = a ⊕ b ⊕ c 可以推出 a = d ⊕ b ⊕ c.

5. a ⊕ b ⊕ a = b

6. 若x是二進位制數0101,y是二進位制數1011

則x⊕y=1110

只有在兩個比較的位不同時其結果是1,否則結果為0

即「兩個輸入相同時為0,不同則為1」!

//異或

//規則:相同為0,不同為1

//加密

void crpypt(char normal_path, char crypt_path)

//關閉

fclose(crypt_fp);

fclose(nromal_fp);

}

//解密

void decrpypt(char crypt_path, char decrypt_path)

//關閉

fclose(crypt_fp);

fclose(normal_fp);

}

void main()
//讀取二進位制檔案中的資料時,乙個乙個字元讀取

//密碼:hellocpp

//加密

void crypt(char normal_path, char crypt_path, char password)

//關閉

fclose(crypt_fp);

fclose(normal_fp);

}

//解密

void decrpypt(char crypt_path, char decrypt_path, char password)

//關閉

fclose(crypt_fp);

fclose(normal_fp);

}

void main()

檔案的讀寫

eg 文字中每一行的資料結構,它們是以tab鍵為間隔的 afghanistan baghlan 36.12 68.7 afghanistan balkh 36.758 66.896 include stdafx.h include fstream include using namespace st...

檔案的讀寫

為了讀而開啟檔案,要建立乙個ifstream物件,他的用發與cin相同,為了寫而開啟檔案,要建立乙個ofstream物件,用法與cout相同。一旦開啟乙個檔案,就可以像處理其他iostream物件那樣對它進行讀寫。在iosream庫中,乙個十分有用的函式是getline 用它可以讀入到string物...

檔案的讀寫

對於檔案的讀寫有各種形式,如位元組流讀寫,字元流讀寫,在字元流之上的緩衝流的讀寫,對於這幾種流的讀寫各有優點,各有不足吧 首先介紹一下位元組輸入輸出流 fileinputstream fiieoutputstream 對檔案的操作 將檔案aa.txt中的內容讀取出來放到bb.txt檔案中。首先以乙個...