摘要:
/******密码变换问题******/#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 阅读全文