代码
提交代码
#include <stdio.h> int main() { char str[20]; fgets(str, 20, stdin); printf("%s",str); return 0; }
运行结果