编程将“China”应译成密码。密码的顾虑是:用原来的字母后面第4个字母代替原来的字母。因此“China”应译
编程将“China”应译成密码。密码的顾虑是:用原来的字母后面第4个字母代替原来的字母。因此“China”应译成为“Glmre”。编写程序,用赋值的方法使c1,c2,c3...
编程将“China”应译成密码。密码的顾虑是:用原来的字母后面第4个字母代替原来的字母。因此“China”应译成为“Glmre”。编写程序,用赋值的方法使c1,c2,c3,c4,c5五个变量的值分别C h i n a,经过运算使c1,c2,c3,c4,c5的值分别变为G l m r e并输出。
展开
展开全部
#include <stdio.h>
int main()
{
int c1='C',c2='h',c3='i',c4='n',c5='a';
c1 += 4;
c2 += 4;
c3 += 4;
c4 += 4;
c5 += 4;
putchar(c1);
putchar(c2);
putchar(c3);
putchar(c4);
putchar(c5);
printf("\n");
printf("%c%c%c%c%c",c1,c2,c3,c4,c5);
getch();getch();
return 0;
}
int main()
{
int c1='C',c2='h',c3='i',c4='n',c5='a';
c1 += 4;
c2 += 4;
c3 += 4;
c4 += 4;
c5 += 4;
putchar(c1);
putchar(c2);
putchar(c3);
putchar(c4);
putchar(c5);
printf("\n");
printf("%c%c%c%c%c",c1,c2,c3,c4,c5);
getch();getch();
return 0;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询