单项选择题

有以下程序段: int n, t=1, s=0; scanf("% d", &n); do{s=s+t; t=t-2; )while(t!=n); 为使程序不陷入死循环,从键盘输入的数据应该是______。

A.任意正奇数
B.任意负偶数
C.任意正偶数
D.任意负奇数