1628: 【07】输出“$”号▃
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:31
Solved:10
Description
输入一个正整数n,输出一行n个字符“ ”,相邻两个“ ”用一个空格隔开。
Input
一个不大于10的正整数n。
Output
输出占一行,是n个字符“ ”,相邻两个“ ”用一个空格隔开。
注意:
输出时行末尾是否有空格,不影响答案的正确性。
Sample Input Copy
5
Sample Output Copy
$ $ $ $ $
HINT
print(x, end =’’)语句可以输出指定内容,以空格结尾。