问题
-
若要求从键盘读入含有空格字符的字符串,应使用函数()。A)getc B)gets C)getchar D)scanf
-
若要求从键盘读入含有空格字符的字符串,应使用函数()。A)getc B)gets C)getchar D)scanf
-
若输入字符串:abcde↙,则以下while循环体将执行次。while((ch=getchar())==’e’)printf("*");
-
当用户要求输入的字符串中含有空格时 应使用的输入函数是A.scanf()B.getchar()C.gets()D.getc()
-
在Python 3.x中 使用内置函数input()接收用户输入时 不论用户输入的什么格式 一律按字符串进行返回。()
-
当接受用户输入的含有空格的字符串时 应使用()函数。A.gets()B.getchar()C.scanf()D.printf()