执行下列程序段的输出结果是()。 A: yes B: no C: yesno D: yno
执行下列程序段的输出结果是()。 A: yes B: no C: yesno D: yno
执行以下程序段后,输出结果是______。 A: NO B: YES C: YESNO D: 提示运行错误
执行以下程序段后,输出结果是______。 A: NO B: YES C: YESNO D: 提示运行错误
以下程序的功能是根据输入的是y(Y)还是n(N),在屏幕上分别显示出“This is YES.”或“This is NO.”,请填空。 #include void YesNO(char ch) { switch(ch) { case 'Y': case 'y':printf(" This is YES. "); ; case 'N': case 'n': printf(" This is NO. "); } } main() { char ch; printf(" Enter a char 'Y', 'y' or 'n', 'N': "); ch= ; printf("ch:%c",ch); YesNo(ch); }
以下程序的功能是根据输入的是y(Y)还是n(N),在屏幕上分别显示出“This is YES.”或“This is NO.”,请填空。 #include void YesNO(char ch) { switch(ch) { case 'Y': case 'y':printf(" This is YES. "); ; case 'N': case 'n': printf(" This is NO. "); } } main() { char ch; printf(" Enter a char 'Y', 'y' or 'n', 'N': "); ch= ; printf("ch:%c",ch); YesNo(ch); }
以下程序的功能是根据输入的“y”(“Y”)与“n”(“N”),在屏幕上分别显示出“This is YES.”与“This is NO.”。请填空。 void YesNo(char ch) { switch(ch) { case ‘y’: case ‘Y’: printf(“\nThis is YES.\n”); _________; case ‘n’: case ‘N’: printf(“\nThis is No.\n”); } } int main() { char ch; printf(“Enter a char ‘y’,‘Y’or‘n’,‘N’:”); ch=____________; printf(“ch:%c”,ch); YesNo(ch); }
以下程序的功能是根据输入的“y”(“Y”)与“n”(“N”),在屏幕上分别显示出“This is YES.”与“This is NO.”。请填空。 void YesNo(char ch) { switch(ch) { case ‘y’: case ‘Y’: printf(“\nThis is YES.\n”); _________; case ‘n’: case ‘N’: printf(“\nThis is No.\n”); } } int main() { char ch; printf(“Enter a char ‘y’,‘Y’or‘n’,‘N’:”); ch=____________; printf(“ch:%c”,ch); YesNo(ch); }
1