专栏(刷题):https://blog.csdn.net/2301_79293429/category_12545690.html
?
这一题直接给我梦回高中😶?🌫?
//题目理解:小车开始运动的时候小球都开始下落,
// 需要知道下落到 小车顶部的时间 和 落地的时间,
//计算出其小车经过的范围
int main()
{
double h, s1, v, l, k, n;
scanf("%lf%lf%lf%lf%lf%lf", &h, &s1, &v, &l, &k, &n);
double t1 = sqrt((h - k) / 5), t2 = sqrt(h / 5);
int count = 0;
for (int i = n - 1; i >= 0; i--)
{
//车头满足:车头到的时候满足
if ((s1 - i - 0.00001) / v >= t1 && (s1 - i - 0.00001) / v < t2)
count++;
//经过的时候满足
else if ((s1 - i - 0.00001) / v < t1&&(s1 + l + 0.00001 - i) / v > t2)
count++;
//车尾到的时候满足
else if ((s1+l + 0.00001- i ) / v >= t1 && (s1 +l+ 0.00001- i ) / v < t2)
count++;
}
printf("%d", count);
return 0;
}
?恭喜你今天又进步了一点点啦~