Даны числа d и q.Если куб суммы этих чисел больше суммы их квадратов, то составить программу для нахождения их суммы, иначе отношение d≠0,q≠0
Ответы
Ответ:
#include<stdio.h>
// program to find the sum of two numbers d and q
int main()
{
int d,q; // declare variables
// take input of the variables
printf("Enter the value of d:");
scanf("%d",&d);
printf("Enter the value of q:");
scanf("%d",&q);
int sum = d+q; // calculate sum
if(d != 0 && q != 0) // check given conditions for non zero values of d and q
{
int cubeSum = (sumsumsum); //calculate cube of their sum
int sqSum = (dd + qq); // calculate sum fo their squares
if(cubeSum > sqSum) // check condition for cube greater than square
printf("The sum of %d and %d is %d.", d, q, sum);
else // when cube is not greater than square
printf("The ratio is not valid.");
return 0; } }