The error i keep getting is: Unable to start program. The system cannot find the file specified.
Please help me fix this code or problem because its driving me crazy that I can't figure it out.
//Converts $100 to Euros
//Made 11-9-09
#include <iostream>
using namespace std;
#define etod 1.4984
int main ()
{
double d=100; //$100
double euro;
euro = etod * d;
cout << euro;
return 0;
}
This post has been edited by H4CKC0D3R: 09 November 2009 - 07:08 PM

New Topic/Question
Reply




MultiQuote





|