Проект не будет строить - PullRequest
0 голосов
/ 02 октября 2018

Так что мне потребовалось некоторое время, чтобы найти кодовый блок с компилятором, но в конце концов я нашел один ... Я написал очень простой код (обучение)

//
//  Conversion - Program to convert temperature from Celsius degrees to      
    Fahrenheit : Fahrenheit = Celsius * (212 - 32)/100 + 32
//
//
//
#include <cstdio>
#include <cstdlib>
#include <iostream>
using namespace std;

int main(int nNumberofArgs, char* pszArgs[])
{
// enter the temperature in Celsius
int celsius;
cout << "Enter the temperature in Celsius:";
cin >> celsius;

// calculate conversion factor for Celsius
// to Fahrenheit
int factor;
factor = 212 - 32;

// use conversion factor to convert Celsius
// into Fahrenheit values
int fahrenheit;
fahrenheit = factor * celsius/100 + 32;

// output the results (followed by a NewLine)
cout << "Fahrenheit value is:";
cout << fahrenheit << endl;

// wait until user is ready before terminating program
// to allow the user to see the program results
cout << "Press Enter to continue..." << endl;
cin.ignore(10, '/n');
cin.get();
return 0;
}

, но я продолжаю получать эту ошибку

-------------- Сборка: отладка при преобразовании (компилятор: компилятор GNU GCC) ---------------

x86_64-w64-mingw32-g ++. Exe -o bin \ Debug \ Conversion.exe obj \ Debug \ main.o
Выполнение 'x86_64-w64-mingw32-g ++. Exe -o bin \ Debug \ Conversion.exe obj \ Debug \ main.o 'в' C: \ CPP_Programs_from_Book \ Conversion 'не удалось.

не будет собирать

ps im с использованием code :: blocks PLZ, как мне это исправить

1 Ответ

0 голосов
/ 02 октября 2018

Похоже, что комментарий был оставлен без комментариев.

//
//  Conversion - Program to convert temperature from Celsius degrees to      
    Fahrenheit : Fahrenheit = Celsius * (212 - 32)/100 + 32
//

Должно быть

//
//  Conversion - Program to convert temperature from Celsius degrees to      
//  Fahrenheit : Fahrenheit = Celsius * (212 - 32)/100 + 32
//
...