#include <iostream>
usingnamespace std;
int main()
{
double propval;
cout << "What is the actual value of the property? \n";
cin >> propval;
}
is there anything wrong with this code that im getting no output? when i remove the cin i get What is the actual value of the property?, but with this code i get a blank
GNU GCC Compiler with codeblocks.. I'm going to try microsoft visual c++, as I feel it's something with codeblocks messing up, unless anyone can suggest something different