#include
int main()
{
char cypher[4]="Love",code[4];
const int N=26;
int i=0,n;
printf("please input the keys :n");
scanf("%d",&n);
printf("The original word is %s n", cypher);
for(;i'Z')
cypher[i] =((cypher[i] - 'a')+n)%N+'a';
else
cypher[i]=((cypher[i] - 'A')+n)%N+'A';
}
printf(("The encrypted word is %s , cypher);
return 0;
}