如何输入或输出突出显示的代码?
我也使用此代码。
#include <stdio.h>
int main()
{
int e;
char ch;
printf("\n Enter a character : ");
scanf("%c",&ch);
e=ch;
e=e-6;
ch=e;
printf("\n This is % c before the character W :",ch);
getch();
return 0;
}
此代码将为输入 W
打印 Q输入
Enter a character : W
输出
This is Q before the character W
答案 0 :(得分:2)
Alt-
列中的数字表示您必须阅读两个字符:如果第一个为零,那么您必须阅读另一个以获取密钥。