WAP using a class to store price list of 5 items and to print the largest prices as well as the sum of all prices.
/*WAP using a class to store price list of 5 items and to print the largest prices as well as the sum of all prices.*/ #include<iostream.h> #include<stdlib.h> class ITEM{ int itemcode[5]; float it_price[5]; public: void initialize (void); float largest (void); float sum (void); void display_items (void); }; //........
Comments
Post a Comment