haha1235  

2013年11月14日

摘要: //密码加密#include#include #define MAXLINE 80 //字符串少于80个字符void encrypt(char*); 自定义 函数 int main(void) { char line[MAXLINE]; printf("Input the string:"); gets(line); //输入一串字符 encrypt(line); printf("%s%s\n","After being encryted:",line); //输出一串字符 return 0; } void encrypt(... 阅读全文
posted @ 2013-11-14 09:53 haha1235 阅读(154) 评论(0) 推荐(0) 编辑