【项目2:转着圈加密】
为使电文保密,往往按一定规律将电文转换成密码,收报人再按约定的规律将其译回原文。
加密办法,如图所示,每一个字母的密文是其后第4个字母,若超出了字母的范围,将A看作为Z的下一个字母,将a看作是z的下一个字线,依次顺延。
如″Wonderful!″转换为″Asrhivjyp!″。
输入一行字符,要求输出其相应的密码。
解法:
#include <stdio.h>
int main( )
{
char c;
while ((c=getchar( ))!='\n')
{
if((c>='a'&&c<='z')|| (c>='A'&&c<='Z'))
{
c=c+4;
if((c>'Z' && c<='Z'+4) || (c>'z'))
c=c-26;
}
putchar(c);
}
printf("\n");
return 0;
【项目5:有多少符号】
输入一行文字,以回车结束,统计并输出其中数字、空格、字母出现的次数,以及输入的字符总数。
解法:
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a=0,b=0,c=0,i=0;
char ch;
printf("please enter a sentence:\n");
while((ch=getchar())!= '\n')
{
if(ch >=48 && ch <= 57)
a++;
if(ch>=65 && ch <=90)
b++;
if(ch>=97 && ch <= 122)
c++;
++i;
}
printf("the amount of number is:%d\n",a);
printf("the amount of capital letters is:%d\n",b);
printf("the amount of lower-case letters is:%d\n",c);
printf("the amount of character is:%d\n",i);
return 0;
}