fork download
  1. #include <stdio.h>
  2. int main ()
  3. {
  4. /* variable definition: */
  5. float a, b, c;
  6. /* variable initialization */
  7. a = -2233.350;
  8. b = .06;
  9. c = a * b + a;
  10. printf("Enter the price in dollars: $%f \n", a);
  11. printf("Enter state sales tax: %f \n", b);
  12. printf("Price with Tax is $%f. \n", c);
  13.  
  14. return 0;
  15. }
Success #stdin #stdout 0s 2156KB
stdin
Standard input is empty
stdout
Enter the price in dollars: $-2233.350098 
Enter state sales tax: 0.060000 
Price with Tax is $-2367.351074.