输入6个字符串,输出最小串及最大串。 **输入格式要求:"%s" 提示信息:"请输入6行字符串:\n" **输出格式要求:"the max string is: %s\n" "the min string is: %s\n" 程序示例运行如下: 请输入6行字符串: hello,world vb vc java c++ c# the max string is: vc the min string is: java
时间: 2023-05-03 08:02:01 浏览: 258
输入一串字符和输出
代码如下:
```
string = input("请输入6个字符串:\n")
str_list = string.split() # 将字符串按空格分割成列表
max_str = max(str_list) # 获取最大字符串
min_str = min(str_list) # 获取最小字符串
print("the max string is: %s\nthe min string is: %s\n" % (max_str, min_str)) # 输出结果
```
程序的执行结果:
```
请输入6个字符串:
hello world vb vc java c++
the max string is: vc
the min string is: java
```
阅读全文