1

このプログラムで発生したエラーについて以前に質問を投稿しましたが、昨日は機能しましたが、今日は機能しなくなりました。何が起こったのかわかりません。これが私のコードです。

#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)

一晩で何が起こったのか理解できません。

4

0 に答える 0