摘要: /******密码变换问题******/#include#include#define MAXLINE 100void encrypt(char *);int main(void){ char line [MAXLINE]; /*定义字符串line*/ printf("Input the string:"); gets(line); /*字符串输入函数gets(s),有返回值*/ encrypt(line); /*调用加密函数*/ printf("%s%s\n","After being encrypted :",line); ret 阅读全文
posted @ 2013-11-14 12:08 zhaoyang16 阅读(176) 评论(0) 推荐(0) 编辑