标签:style blog io color os sp 数据 div on
2
1
5
1
1
1 #include <stdio.h> 2 3 int main(){ 4 int T; 5 int h; 6 int amount; 7 8 scanf("%d",&T); 9 10 while(T--){ 11 scanf("%d",&h); 12 13 amount=0; 14 while(h>10){ 15 h-=5; 16 amount++; 17 } 18 printf("%d\n",amount+1); 19 } 20 21 return 0; 22 }
标签:style blog io color os sp 数据 div on
原文地址:http://www.cnblogs.com/zqxLonely/p/4098590.html