通过海量题库、编程比赛和实时排名,系统化提升您的编程能力。
当输入为"Hi,Lily "时,下面程序的执行结果是( )。
#include<stdio.h> main() { char c; while(c!=',') { c=getchar(); putchar(c); } }