标签:open amp math ane display 组成 clu 数据包 one
Input
输入数据包含多个测试实例,每个实例占一行,由VUL和D组成,其中 0<D<VUL<5000。
Output
对于每组测试数据,请输出挂完盐水需要的时间,每个实例的输出占一行。
Sample Input
10 1
Sample Output
13
// 分别计算滴水所用的时间和间隔所用的时间. 注意理解循环的用法.
1 #include<stdio.h> 2 #include<math.h> 3 int main() 4 { 5 double vul,d,n; 6 int t,i; 7 while(~scanf("%lf %lf", &vul, &d)) 8 { 9 t=ceil(vul/d); 10 for(i=1,n=vul/d-i;n>0;n-=++i) 11 t++; 12 printf("%d\n", t); 13 } 14 return 0; 15 }
标签:open amp math ane display 组成 clu 数据包 one
原文地址:https://www.cnblogs.com/goldenretriever/p/10357089.html