Advertisement
Vladislav8653

honey

Dec 6th, 2023 (edited)
922
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.44 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main() {
  4.     int x,y;
  5.     x=0;
  6.     y=0;
  7.     int turtleDis = 0;
  8.     int dogDis = 0;
  9.     int time=1;
  10.     cout <<"Введите сколько черепаха проходит за минуту: ";
  11.     while (x<=0){
  12.         cin>>x;
  13.     }
  14.     cout <<"Введите длину дистанции: ";
  15.     while (y<=0){
  16.         cin>>y;
  17.     }
  18.     int hour = 1;
  19.     while (turtleDis<y && dogDis<y ){
  20.         turtleDis=turtleDis+x;
  21.         cout << "Turtle distance: " << turtleDis << " | ";
  22.         if (time <= (hour * 60) - 50){
  23.             dogDis=dogDis+5*x;
  24.         }
  25.         cout << "Dog distance: " << dogDis << " | ";
  26.         cout << "Minutes : " << time << " | ";
  27.         if (time % 60 == 0){
  28.             hour++;
  29.         }
  30.         cout << "Hours : " << hour << endl;
  31.         time++;
  32.     }
  33.  
  34.     if (turtleDis>=y && dogDis>=y ){
  35.         cout <<"ничья ";
  36.     }
  37.     else {
  38.         if (turtleDis>=y){
  39.             cout <<"Выйграла черепаха ";
  40.         }
  41.         else if (dogDis>=y){
  42.             cout <<"Выйграла собака: ";
  43.         }
  44.     }
  45.     cout << "Время: " << time - 1; // когда уже все условия выполнены, в конце цикла происходит ненужное нам time++. поэтому отнимаем
  46.     return 0;
  47. }
  48.  
  49.  
  50. //ничья: 1м в минуту скорость и 63 метра дистанция
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement