请读程序: # include<stdio.h> Char fun(char*c) (if(c<=’z’& & * c>=’A’) * c-=’A’-’a’ return * c; } main() { char

admin2009-04-15  19

问题 请读程序:    # include<stdio.h>    Char fun(char*c)    (if(c<=’z’& & * c>=’A’) * c-=’A’-’a’    return * c;    }    main()    { char s[81],* p=s;    gets(s);    while(* p)    { * p=fun(p);putchar(* p);p + +;    puchar(’\n’);    }    若运行时从键盘上输入OPEN THE DOOR <CR>(<CR>表示回车),则上面程序的输出结果是    (  )

选项 A、oPEN tHE dOOR
B、ope the door
C、OPEN THE DOOR
D、Open The Door

答案2

解析
转载请注明原文地址:https://kaotiyun.com/show/U4Xp777K
0

相关试题推荐
最新回复(0)