#include int main( void ) { float cost = 15.92; float total = 3.6e5; float strange; double debt = 1.2e15; long double decrease = 5e-6; strange = 357e-1; /* value = 35.7 */ printf( "Cost = %f, Total = %f \n", cost, total ); printf( "Cost = %e, Total = %E \n", cost, total ); printf( "Strange = %e\n", strange ); printf( "Debt = %lf\nDecrease = %Lf\n", debt, decrease ); printf( "Debt = %le\nDecrease = %LE\n", debt, decrease ); }