题解 2190: Little Ke's problem

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

2190: Little Ke's problem

摘要:解题思路:注意事项:参考代码:n = input() print(f"What is your name? Hello {n}, nice to meet you.")……

Little Ke's problem

摘要:解题思路:用gets()函数输入字符串就行。注意事项:gets(字符数组)是从键盘将带有空格的字符序列(以回车键结束)全部输入到指定的字符数组中,并自动加字符串结束符“\0”。该函数返回值是字符数组的……

Little Ke's problem Python解决

摘要:解题思路:    简单的变量存储值并输出参考代码:input_a = input()print("What is your name? Hello "+input_a+", nice to meet ……