Відповідь:
#include <stdio.h>
int main()
{
double a, b, n;
printf("Please enter the value of a: ");
scanf("%lf", &a);
printf("Please enter the value of b: ");
scanf("%lf", &b);
n = (2 * (a * a * a) * (b * b * b * b)) / (7 * b);
printf("The value of n is: %lf\n", n);
return 0;
}</stdio.h>
begin
var a: real := readreal('Введите значение переменной a: ');
var b: real := readreal('Введите значение переменной b: ');
var n: real := 2 * a**3 * b**4 / (7 * b);
print('n =', n);
end.
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Відповідь:
#include <stdio.h>
int main()
{
double a, b, n;
printf("Please enter the value of a: ");
scanf("%lf", &a);
printf("Please enter the value of b: ");
scanf("%lf", &b);
n = (2 * (a * a * a) * (b * b * b * b)) / (7 * b);
printf("The value of n is: %lf\n", n);
return 0;
}</stdio.h>
Решение (PascalABC.NET 3.8.3):
begin
var a: real := readreal('Введите значение переменной a: ');
var b: real := readreal('Введите значение переменной b: ');
var n: real := 2 * a**3 * b**4 / (7 * b);
print('n =', n);
end.