iipq

Untitled

Nov 19th, 2014
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.20 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main(){
  4.  
  5. float bill, total;
  6. printf("Enter the electric bill here: ");
  7. scanf("%f", &bill);
  8. total=bill+(bill*0.15);
  9. printf("\nTotal bill with vat is: %f", total);
  10. return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment