Advertisement
Guest User

Untitled

a guest
Jan 25th, 2020
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. int main()
  2. {
  3. float cena;
  4. int towar,dzien,miesiac,rok;
  5.  
  6. printf("Podaj numer towaru: ");
  7. scanf("%d", &towar);
  8.  
  9. printf("\n Podaj cene towaru: ");
  10. scanf("%f", &cena);
  11.  
  12. printf("\n Podaj date zakupu: ");
  13. scanf("%d %d %d", &dzien, &miesiac, &rok);
  14.  
  15. printf("Towar:\t\tCena:\t\tData:\t\t", towar, cena, dzien, miesiac, rok);
  16. printf("\n%d\t\t%.2f\t\t%d/%d/%d", towar, cena, dzien, miesiac, rok);
  17.  
  18.  
  19.  
  20.  
  21. return 0;
  22. getche();
  23.  
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement