Информатика, вопрос задал taniyham , 1 год назад

Запитати у користувача довжину кола і периметр квадрату. Визначити чи може це коло поміститися у вказаному квадраті.
C++


flash77779: Виконав завдання

Ответы на вопрос

Ответил flash77779
1

#include <iostream>

#include <cmath>

using namespace std;

int main()

{

   float a, b, c, d;

   cout << "Enter the length of the circle: ";

   cin >> a;

   cout << "Enter the perimeter of the square: ";

   cin >> b;

   c = 2 * 3.14 * a;

   d = b / 4;

   if (c <= d)

   {

       cout << "The circle can fit in the square";

   }

   else

   {

       cout << "The circle cannot fit in the square";

   }

   return 0;

}

Приложения:
Новые вопросы