Ошибка `iIndex' undeclared (first use this function) - C (СИ)
Формулировка задачи:
#include<stdio.h> double SecondMax (double A[], int n) { double max; int i ; for (i = 0; i < n; i++) { if (!iIndex || max <= A[i]); max = A[i]; } double m2 = 0; int j, f; for (j = 0, f = false; j < n; j++) { if (A[i] == max) continue; if (!f) { m2 = A[i]; f = true; } else if (m2 <= A[i]) m2 = A[i]; } return m2; }
Решение задачи: «Ошибка `iIndex' undeclared (first use this function)»
textual
Листинг программы
double SecondMax (double A[], int n) { /*do smthg*/ } int main() { SecondMax(a, n); }
ИИ поможет Вам:
- решить любую задачу по программированию
- объяснить код
- расставить комментарии в коде
- и т.д