单项选择题

以下程序n=0for s in "China":    if s=="t":           break    n=n+1print(n)
A、0
B、1
C、5
D、什么都不输出。