Почему не запускается программа?
//
// Conversion - Program to convert temperature from
// Celsius degrees into Fahrenheits:
// 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
system("PAUSE");
return 0;
}
Делаю как написано в самоучителе но не получается. Почему?
У меня в DevCpp 4.9.9.1 все работает.
Экзешник не запускается? Компиляция должна пройти успешно - ошибок в коде нет. Но может не запускаться исполняемый файл. Например, MinGW библиотеку динамическую подгружает, ее потом в дистрибутив сунуть нужно. Можно еще в системный путь MinGW прописать. У вас что за компилятор?