Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main() {
- int x,y;
- x=0;
- y=0;
- int turtleDis = 0;
- int dogDis = 0;
- int time=1;
- cout <<"Введите сколько черепаха проходит за минуту: ";
- while (x<=0){
- cin>>x;
- }
- cout <<"Введите длину дистанции: ";
- while (y<=0){
- cin>>y;
- }
- int hour = 1;
- while (turtleDis<y && dogDis<y ){
- turtleDis=turtleDis+x;
- cout << "Turtle distance: " << turtleDis << " | ";
- if (time <= (hour * 60) - 50){
- dogDis=dogDis+5*x;
- }
- cout << "Dog distance: " << dogDis << " | ";
- cout << "Minutes : " << time << " | ";
- if (time % 60 == 0){
- hour++;
- }
- cout << "Hours : " << hour << endl;
- time++;
- }
- if (turtleDis>=y && dogDis>=y ){
- cout <<"ничья ";
- }
- else {
- if (turtleDis>=y){
- cout <<"Выйграла черепаха ";
- }
- else if (dogDis>=y){
- cout <<"Выйграла собака: ";
- }
- }
- cout << "Время: " << time - 1; // когда уже все условия выполнены, в конце цикла происходит ненужное нам time++. поэтому отнимаем
- return 0;
- }
- //ничья: 1м в минуту скорость и 63 метра дистанция
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement