Good day. Help is needed. Given the task:
Create a program in C ++ to calculate the value and error of the function for given values of the arguments in a differential way. Implement software rounding results up to correct numbers.
Z= (a+b)/(b^2-3c) a=3,45 b=5.781 c=4.1 Added.
The program is almost written, only the error string itself is needed ...
// функция double function(double a, double b, double c) { return (a+b)/(pow(b,2)-3c); } // погрешность double dFunction(double a, double b, double c, double da, double db, double dc) { return *********** // - ЭТА СТРОКА, вместо звёзд. }