Toggle navigation
编绘童年
F.A.Qs
ProblemSet
Source/Category
Status
Ranklist
Contest
Login
Problem2767--倒计时
2767: 倒计时
Time Limit:
1
Sec
Memory Limit:
128 MB
Submit:
185
Solved:
157
[
Status
] [
Submit
] [Creator:
]
Description
从大到小输出 n 到 0,其中,0 后面跟一个感叹号(!);其它数字后面跟两个点(..)
注:符号都是英文符号。
Input
一个整数 n(1 ≤ n ≤ 1000)。
Output
从大到小输出 n 到 0,每个数占一行。其中,0 后面跟一个感叹号(!);其它数字后面跟两个点(..)
Sample Input
Copy
5
Sample Output
Copy
5.. 4.. 3.. 2.. 1.. 0!
Source/Category