// 불쾌지수 계산 공식: DI = 0.81T + 0.01H(0.99T - 14.3) + 46.3 float discomfortIndex = 0.81 * t + 0.01 * h * (0.99 * t - 14.3) + 46.3; ...