蓝桥杯基础练习 龟兔赛跑预测

#include 
#include 
#include 
#include 
using namespace std;

int v1,v2,t,s,L;
int s1,t1,s2,t2;

int main()
{
	scanf("%d %d %d %d %d",&v1,&v2,&t,&s,&L);
	t1+=1;
	t2+=1;
	s1=s1+v1;
	s2=s2+v2;
	while(true)
	{
		if(s1==L&&s2==L)
		{
			cout<<"D"<=t)
		{
			t1+=s;
		//	t2+=s;		//不能这样写,因为在这过程中可能跑过终点了 
		//	s2=s2+v2*s;	
			for(int i=1;i<=s;i++)
			{	
				t2+=1;
				s2+=v2;
				if(s2==L)
				{
					cout<<"T"<

你可能感兴趣的:(蓝桥杯基础练习 龟兔赛跑预测)