地址:http://acm.hdu.edu.cn/showproblem.php?pid=2552
题意:中文。。。
mark:无论输入是多少。。。输出都是1。
代码:
# include <stdio.h>int main (){ int T ; scanf ("%d", &T) ; while (T--) puts("1") ; return 0 ;}