Ранее я отправил вопрос об ошибках, которые у меня были с этой программой, но вчера она работала, хотя сегодня она больше не работает. Я не уверен, что случилось. вот мой код
#include <iostream>
#include <cmath>
using namespace std;
float eqfunction(float, float);
int main() {
float temperature;
float windspeed;
float returnchillindex;
cout << "What is the temperature?"<< "Must be in degrees fahrenheit";
cin >> temperature;
cout << "What is the wind speed?"<< "In MPH.";
cin >> windspeed;
returnchillindex = eqfunction(temperature,windspeed);
cout << returnchillindex;
system("pause");
return 0;
}
float eqfunction(float temperature, float windspeed){
float windindex = 35.74f + 0.6215f * temperature;
windindex = windindex - 35.75f * std::pow(windspeed, 0.16f);
windindex = windindex + 0.4275f * temperature * std::pow(windspeed,0.16f);
return windindex;
}
это то, что возвращает мой компилятор
mingw32-g++.exe -c C:\Users\Ryan\Documents\CodeBlocks\Exam1Part2.cpp -o C:\Users\Ryan\Documents\CodeBlocks\Exam1Part2.o mingw32-g++.exe -o C:\Users\Ryan\Documents\CodeBlocks\Exam1Part2.exe C:\Users\Ryan\Documents\CodeBlocks\Exam1Part2.o mingw32-g++.exe: Internal error: Aborted (program collect2) Please submit a full bug report. See <URL:http://www.mingw.org/bugs.shtml> for instructions. Process terminated with status 1 (0 minutes, 0 seconds) 0 errors, 0 warnings (0 minutes, 0 seconds)
Я не понимаю, что случилось за одну ночь.
Задача ещё не решена.
Других решений пока нет …