📄 program3_09.c
字号:
/* Program 3.9 Testing cases */
#include <stdio.h>
int main(void)
{
char answer = 0; /* Stores an input character */
printf("Enter Y or N: ");
scanf(" %c", &answer);
switch (answer)
{
case 'y': case 'Y':
printf("\nYou responded in the affirmative.");
break;
case 'n': case 'N':
printf("\nYou responded in the negative.");
break;
default:
printf("\nYou did not respond correctly...");
break;
}
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -