#include using namespace std; int main() { float y = 7.5f; { float x = 10.25f; cout << x + y << endl; } cout << x + y << endl; cout << "\n\n"; system( "PAUSE" ); return( 0 ); }