Рене Декарт так его звали
По моему зеленый, но это не точно
#include "stdio.h"
#include "math.h"
int main(){
double y, x, a, b;
scanf("%lf%lf%lf", &x, &a, &b);
y = cos(2 * x) + sin(x - 3);
printf("y = %lf", y);
if (cos(2 * a) + sin(x - a) > cos(2 * b) + sin(b - 3))
printf("\nmax - a");
else if (cos(2 * a) + sin(x - a) < cos(2 * b) + sin(b - 3))
printf("\nmax - b");
else
printf("\nin a = in b");
}
Uses crt;
var a:array [1..100] of integer;
k,n,i:integer;
begin
clrscr;
write('Введите количество элементов массива=');
readln(n);
randomize;
for i:=1 to n do
a[i]:=random(45)-20;
writeln('Исходный массив');
for i:=1 to n do
write(a[i]:6);
writeln;
for i:=1 to n-1 do
if a[i+1]>a[i] then
writeln('Индексы: ',i:3);
writeln;
readln;
end.