مستر کد
mrcode.wikibix.ir

سورس کد مدیریت فروشگاه

نویسنده : نازنین رحمانی | زمان انتشار : 26 مرداد 1400 ساعت 18:11

جهت انجام پروژه های دانشجویی و یا تمرین‌های برنامه نویسی رشته کامپیوتر میتوانید به آی دی تلگرام زیر پیام دهید

@AlirezaSepand



در این قسمت سورس کد مدیریت فروشگاه به زبان ++C برای شما عزیزان آماده دانلود کرده ایم. برای دانلود این محصول بر روی دکمه دانلود محصول کلیک کنید.

بخشی از سورس کد مدیریت فروشگاه به زبان ++C :

class product:public virtual earn{
public:
           int quan;
           char name[20];
           char id[20];
           double percost;
           double persell;
           double cost;
           double sell;
           void cal()
		   {
		    cost=percost*quan;
        	sell=persell*quan;
            profit=profit +(sell-cost)*365;
			}
           void file();
           void get();

};
void product::get()
{
 int s;
cout<<"\nnumber of products produced?\n";
cin>>s;
for(int i=0;i<s;i++)
{
  cout<<"\ninput product name: \n";
  cin>>name;
  cout<<"\ninput product id: \n";
  cin>>id;
  cout<<"\ninput cost price of product: \n";
  cin>>percost;
  cout<<"\ninput selling price of product: \n";
  cin>>persell;
  cout<<"\ntotal product quantity: \n";
  cin>>quan;
    cal();
    file();
  }
 
}
void product::file()
{
char file[20];
strcpy(file,id);
strcat(file,".txt");
ofstream f(file);
f<< "\nproduct name: "<<name<< "\nproduct id: "<<id<<"\ncost price of product: " <<percost<<"\nselling price of product: "<<persell<<"\nquantity: "<<quan<<"\n total cost: "<<cost<<"\nsell: "<<sell;
f.close();
}


منبع: copro.ir