Advertisement
Guest User

Untitled

a guest
Oct 25th, 2014
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. if (i>0.8*n)
  2. {
  3. printf("aktualna wartosc calki po wykonaniu 80 procent obliczen wynosi: %f", suma);
  4. }
  5. else if (i>0.6*n)
  6. {
  7. printf("aktualna wartosc calki po wykonaniu 60 procent obliczen wynosi: %f", suma);
  8. }
  9. else if (i>0.4*n)
  10. {
  11. printf("aktualna wartosc calki po wykonaniu 40 procent obliczen wynosi: %f", suma);
  12. }
  13. else if (i>0.2*n)
  14. {
  15. printf("aktualna wartosc calki po wykonaniu 20 procent obliczen wynosi: %f", suma);
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement