製品が0の場合はNANを返す必要があります。現時点では、奇妙な値が計算されています。私は配列の積を計算するCで配列を作成しています
#include <stdarg.h>
#include <stdbool.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <stdio.h>
#include <math.h>
double array_product(double arr[], int n) {
double product = 1;
for(int i = 0; i <= n; i++){
if(isfinite(arr[1]) == true){
product *= arr[1];
}
}
if(product == 1){
return NAN;
} else {
return product;
}
}
void call_function(const char * label, double x[], int count) {
double prod = array_product(x, count);
printf("%s\n", label);
printf("\tInput data:\n");
for (int i = 0; i < count; i++) {
printf("\t%d\t%f\n", i, x[i]);
}
printf("\tProduct = %f\n\n", prod);
}
int main(void) {
double x1[] = {0};
call_function("Count == 0", x1, 0);
double x2[] = { NAN, +INFINITY, -INFINITY };
call_function("No finite values", x2, 3);
double x3[] = { 1, 2, 3, 4, 5, 6, 7 };
call_function("Several finite values", x3, 7);
double x4[] = { 2, M_PI, NAN, 3, INFINITY, 4 };
call_function("A mix of finite values and infinities", x4, 6);
return 0;
}
計算された値は正しく表示されますが、手動による計算では値がはるかに大きくなります。 は
関数 'array_product()'内の 'arr [1]'のインデックスが常に '1'である理由を理解できません。すべての要素をループして乗算しようとしていませんか? – babon