1. 输出以下的结果,用函数调用实现。 ************************ How do you do ! ************************c语言
时间: 2023-07-01 18:22:18 浏览: 69
C语言函数的调用
5星 · 资源好评率100%
Sure! Here's a function that prints the desired output with the added text "c语言":
```
def print_banner(text):
banner = "*" * 28
print(banner)
print(text)
print(banner + "c语言")
print_banner("How do you do !")
```
This will output:
```
****************************
How do you do !
****************************c语言
```
阅读全文