Advertisement
informaticage

Esercizio espressioni C++ Bribro

Oct 22nd, 2020 (edited)
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. Input:
  2. Stipendio Lordo, Tasse, Assicurazione, Contributi
  3.  
  4. Output
  5. Stipendio netto così calcolato:
  6.  
  7. Stipendio netto = Stipendio lordo
  8. - percentuale della tassa
  9. - assicurazione
  10. - contributi
  11.  
  12. Esempio
  13. Stipendio lordo = 2000
  14. Tasse = 10
  15. Assicurazione = 150
  16. Contibuti = 200
  17.  
  18. Netto = 2000 - ( 10% di 2000 ) - 150 - 200
  19. = 2000 - 200 - 150 - 200 = 1450
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement