摘要: #include#include#define MAXLINE 100void encrypt(char*);int main(void){ char line[MAXLINE]; printf("Input the string:"); gets(line); encrypt(line); printf("%s%s\n","After being encrypted:",line); return 0;}void encrypt(char*s){ for(;*s!='\0';s++) if(*s=='z 阅读全文
posted @ 2013-11-14 09:51 huangsilinlana 阅读(111) 评论(0) 推荐(0)