موضوعات وبسایت : برنامه نویسی
سوالات امتحان آیین نامه رانندگی

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

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

نویسنده : نازنین رحمانی | زمان انتشار : 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



ارسال نظر

نام


ایمیل


نظر