المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : مساعده في ++C



المشاعر
07-01-2006, 06:20 PM
السلام عليكم
اذا ممكن مساعده في برنامج السي بليز ساعدوني
مطلوب مني اصمم برنامج لمحل بيع اجهزة كمبيوتر
_حيث اني اذا ادخلت رقم قطعه غير موجوده تظهر رساله لتعلمني بذلك واذا ادخلت كميه اقل
او اكثر من المتوفر في المستودع ايضا تظهر رساله.
_واذا كانت الكميه متوفره ورقم القطعه موجود تظهر رساله هل تريد اتمام عملية البيع
_ طلب استخدم في البرنامج جمل الدوران المناسبه لقرائة عناصر المصفوفه
_يطبع عناصر المصفوفه بعد القرائه
......................................................
انا صممت البرنامج هذا بس عندي خطاء وماني عارفه وش الخطاء اذا ممكن تساعدوني
لان مهم احل الواب هذا لانه عليه 50 درجه واهو جزاء من امتحان النهائي
.................................................................
طبعا اهو اعطاني اسماء البضاعه وكيه المتوفره وارقام البظاعه

هذا كود البرنامج الي سويته :

#include<iostream.h>
void main(void)
{
int count,n;
char g;
int ss[5][3]={101,50,25,102,60,30,103,12,550,104,5,250,105,19,400};
cout<<"\n"<<"pace_no\tcount\tpace_price\n";
cout<<"101\t 50\t 25\n";
cout<<"102\t60\t30\n";
cout<<"103\t12\t550\n";
cout<<"104\t8\t250\n";
cout<<"105\t19\t400\n";
cout<<"inter n \n";
cin>>n;
if(n<=105&& n>=101)
{
cout<<"inter count:\n";
cin>>count;
if (n=101&&count<=50)
{
cout<<"are you want continue. press n to yes and f to no \n";
cin>>g;
if (g==n)
{
cout<<"the number of bace="<<n<<"\n"<<"end the count="<<count<<"\n"<<"the price=";
if (int b =101) ss [0][1]*[0][2]
else if(b=102) ss [1][1]*[1][2]
else if (b=103) ss [2][1]*[2][2]
else if(b=104) ss [3][1]*[3][2]
else (b=105) ss [4][1]*[4][2]
}
else
cout<<"thank you";
if (n=102&&count<=60)
{
cout<<"are you want continue. press n to yes and f to no \n";
cin>>g;
if (g==n)
cout<<"the number of bace="<<n<<"\n"<<"end the count="<<count<<"\n"<<"the price="<<count*ss[2][1];
else
cout<<"thank you";
}
else cout<<"the count is not here";

if (n=103&&count<=12)
{
cout<<"are you want continue. press n to yes and f to no \n";
cin>>g;
cout<<"the number of bace="<<n<<"\n"<<"and the";
if (g==n)
cout<<"count="<<count<<"\n";
else
cout<<"thank you";
}
else cout<<"the count is not here";
if (n=104&&count<=8)
{
cout<<"are you want continue. press n to yes and f to no \n";
cin>>g;
cout<<"the number of bace="<<n<<"\n"<<"and the";
if (g==n)
cout<< "count="<<count<<"\n";
else
cout<<"thank you";
}
else cout<<"the count is not here";

if (n=105&&count<=19)
{
cout<<"are you want continue. press n to yes and f to no \n";
cin>>g;
cout<<"the number of bace="<<n<<"\n"<<"and the";
if (g==n)
cout<< "count="<<count<<"\n";
else cout<<"thank you";
}
else cout<<"the count is not here";
}
else cout<<"the pace number in not here";
}
}