Hi
Good Morning ,
Got Syntax error in the line (10)
error C2059: syntax error : ')'
I Use visual studio 2008
Here is my code ::
PHP Code:
# include <iostream>
using namespace std;
int main () {
double ctemp,ftemp;
cout << " Enter the f tempeature ";
cin >> ftemp;
ctemp=(ftemp - 32 /1.8.);
cout << " the c tempeature is : "<< ctemp;
system ("PAUSE");
return 0;
}





Reply With Quote
