标签:style blog http io color os sp 数据 div
1
2
2
1 #include <stdio.h> //每个人都知道自己戴的是白色帽子还是黑色帽子 2 #include <string.h> //当有n个人知道自己戴的是黑色帽子时,要等到其他人不打自己耳光才打自己耳光,因为每个人都不想打自己耳光 3 4 int main(){ 5 int T; 6 int n; 7 8 scanf("%d",&T); 9 10 while(T--){ 11 scanf("%d",&n); 12 printf("%d\n",n); 13 } 14 return 0; 15 }
标签:style blog http io color os sp 数据 div
原文地址:http://www.cnblogs.com/zqxLonely/p/4099953.html