码迷,mamicode.com
首页 > 其他好文 > 详细

先编写函数EncryptChar,按照下述规则将给定的字符c转化(加密)为新的字符

时间:2019-11-26 13:43:47      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:har   std   tchar   str   ring   pre   enc   class   ret   

 

/*
先编写函数EncryptChar,按照下述规则将给定的字符c转化(加密)为新的字符:
"A"转化"B","B"转化为"C",... ..."Z"转化为"a","a"转化为"b",... ..., "z"转化为"A",其它字符不加密。
编写程序,加密给定字符串。
*/
#include <stdio.h>
#include<string.h>
void EncryptChar(char st[],int n){
    int i;
    for(i=0;i<n;i++){
        if(st[i]==Z)
            st[i]=a;
        else if(st[i]==z)
            st[i]=A;
        else{
            st[i]=st[i]+1;
        }
    }
}
int main()
{
    char st[100];
    gets(st);
    int n=strlen(st);
    EncryptChar(st,n);
    puts(st);
    return 0;
}

 

先编写函数EncryptChar,按照下述规则将给定的字符c转化(加密)为新的字符

标签:har   std   tchar   str   ring   pre   enc   class   ret   

原文地址:https://www.cnblogs.com/zhaohuan1996/p/11934671.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!