const   DayList:   array[0..6,1..4]   of   SmallInt
                                      =((1,     5,11,1),
                                          (6,   10,11,1),
                                          (11,15,17,2),
                                          (16,20,23,3),
                                          (21,25,23,3),
                                          (26,31,11,1),
                                          (99,99,17,2)
                                        );

TShopItem = record
     Name : string;
     Price : currency;
   end;

const

   Items : array[1..3] of TShopItem =
   (
     (Name : 'Clock'; Price : 20.99),
     (Name : 'Pencil'; Price : 15.75),
     (Name : 'Board'; Price : 42.96)
   ) ;

相关文章:

  • 2021-05-19
  • 2022-12-23
  • 2021-11-06
  • 2022-12-23
  • 2022-12-23
  • 2021-11-11
  • 2021-12-28
猜你喜欢
  • 2022-01-28
  • 2021-11-14
  • 2021-11-14
  • 2022-02-12
  • 2021-11-11
  • 2021-12-31
  • 2022-12-23
相关资源
相似解决方案