知識社群登入
位置: AutoCAD開放式教學 > 討論區 > 討論
1/19 進度
1樓
一 資料型態 字面常數 複習


二 XOR 加密/解密

a^b --> c

c^b --> a'

a' == a

三 三種結構

sequential

select

loop
for .. next

while .. do

do .. while

repeat .. until

四 指標和 陣列和 字串

五 . . .


2樓
資料型態 字面常數 複習

char, 一個 Byte, 

short int, 2- Bytes,

long int, 4- Bytes

signed, unsigned

int a, b, c;

a= 123;
b= 0123;

c= 0x123;


二 XOR 加密/解密

a^b --> c

c^b --> a'

a' == a

b 是 password

a 是原文,本文,情書的正本,

c 是密文,亂七八糟的變形以後的檔案,看不懂。

a' 是還原以後的 資料,會完全恢復成 本文。


三 三種結構



sequential
swap the contents of a, b


select
if, 

y= a*(x^2) + b*(x) + c = 0

判別是 d= (b*b) - (4*a*c)
d > 0

d == 0,

d < 0


loop
for .. next

while .. do

do .. while

repeat .. until

四 指標和 陣列和 字串
尚未 開始。


五 . . .