Advertisement
shegues

productInformation.c

Jan 30th, 2021
884
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.45 KB | None | 0 0
  1. #include<stdio.h>
  2. int main(void)
  3. {
  4.     int item, month, day, year;
  5.     float unit;
  6.     printf("Enter item number: \n");
  7.     scanf("%d", &item);
  8.     printf("Enter unit price: \n");
  9.     scanf("%f", &unit);
  10.     printf("Enter purchase date (mm/dd/yyyy) : \n");
  11.     scanf("%d/%d/%d", &month, &day, &year);
  12.     printf("Item\t\tUnit\t\tPurchase\n\t\tPrice\t\tDate\n");
  13.     printf("%d\t\t$%7.2f\t%.2d/%.2d/%.4d", item, unit, month, day, year);
  14.     return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement