Advertisement
Guest User

Untitled

a guest
Jan 21st, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #include<stdio.h>
  2.  
  3. int zamiana(int uncje)
  4. {
  5. int filizanki;
  6. filizanki=uncje/8;
  7. }
  8. int main()
  9. {
  10. int uncje,filizanki;;
  11. printf("Podaj ilosc uncji \n");
  12. scanf("%d",&uncje);
  13.  
  14. filizanki=zamiana(uncje);
  15.  
  16. printf("Z podanych uncji wychodzi %d filizanek" ,filizanki);
  17.  
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement