Advertisement
DoGy70

Untitled

Mar 21st, 2023
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. /******************************************************************************
  2.  
  3. Online C Compiler.
  4. Code, Compile, Run and Debug C program online.
  5. Write your code in this editor and press "Run" button to compile and execute it.
  6.  
  7. *******************************************************************************/
  8.  
  9. #include <stdio.h>
  10.  
  11. int main()
  12. {
  13. double v, debit;
  14. int hours, numPipes;
  15.  
  16. printf("Vuvedete obem, debit, chasove i broi trubi: ");
  17. scanf("%lf %lf %d %d", &v, &debit, &hours, &numPipes);
  18.  
  19. v -= debit * hours * numPipes;
  20.  
  21. if (v < 0) {
  22. printf("Baseinyt e prelql.");
  23. } else if (v > 0) {
  24. printf("Baseinyt oshte ne e prelql, ostavat oshte %.2lf litra.", v);
  25. }
  26.  
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement