herrDeng網內搜尋
自訂搜尋
Ads
2009年4月8日 星期三
2009年4月7日 星期二
字串陣列
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
char s[8][30]={
"CS0160資訊安全實習,丙",
"CS0160資訊安全實習,甲",
"GE0105A勞作教育,丙",
"IM0007程式設計,丙",
"IM0068統計學[二],甲",
"IM0164資訊安全實習,丙",
"OHA001導師,丙",
"OHTA003在校輔導時間,乙"
};
for (int i=0; i<8; i++)
cout<<i<<"\t"<<s[i]<<endl;
system("Pause");
return 0;
}
2009年4月6日 星期一
3DES2 加密
3DES2 加密
Key1="34 13 F1 DF 57 9B BC 45"
Key2="34 13 F1 DF 57 9B BC 45"
ECB 模式
明文="56-bit DES-key is short?"
密文=?
Key1="34 13 F1 DF 57 9B BC 45"
Key2="34 13 F1 DF 57 9B BC 45"
ECB 模式
明文="56-bit DES-key is short?"
密文=?
訂閱:
文章 (Atom)
熱門文章
-
11!=?
-
計算你上學期加權平均
-
計算你的BMI
-
int a[]={21, 23, 57, 13 ,17, 6}; float average; average=?
-
輸出字串20次
-
猜數字
-
1. 利用遞迴input n算2^n 2. 用C算GCD(3333,456)
-
C字串練習 字串 char word[]="You win!"; 輸出為: You win! You win You wi You w You You Yo Y 給進階使用者: gets () 是個危險的函式!