SlideShare a Scribd company logo
1 of 23
#include<iostream.h>
#include<stdlib.h>
struct customers
{
int cust_id;
long wait_time;
int count_time;
int entry_time;
int cashier_number;
int serve_time;
int token_no;
};
struct cashier
{
int cashier_id;
int cust_served;
int total_serve_time;
};
void main()
{
int counter=1;
int serve_time=0;
customers cust_obj[100];
cashier cashier_obj[2];
int d=1;
for(int i=0;i<100;i++)
{
cust_obj[i].cust_id=d;
d++;
}
int number_of_customers;
cashier_obj;
int choice;
cout<<"Enter 1 to start simulation:n";
cin>>choice;
int f=10;
for(int q=0;q<100;q++)
cust_obj[q].wait_time=-1;
for(q=0;q<100;q++)
cust_obj[q].serve_time=-1;
if(choice==1)
{
cust_obj[0].cashier_number=1;
cust_obj[0].token_no=1;
cust_obj[1].cashier_number=1;
cust_obj[1].wait_time=0;
cust_obj[1].serve_time=0;
cust_obj[1].token_no=2;
cust_obj[2].cashier_number=1;
cust_obj[2].wait_time=0;
cust_obj[2].serve_time=0;
cust_obj[2].token_no=3;
cust_obj[3].cashier_number=1;
cust_obj[3].wait_time=0;
cust_obj[3].serve_time=0;
cust_obj[3].token_no=4;
cust_obj[4].cashier_number=1;
cust_obj[4].token_no=5;
cust_obj[4].wait_time=0;
cust_obj[4].serve_time=0;
cust_obj[5].cashier_number=2;
cust_obj[5].token_no=1;
cust_obj[5].wait_time=0;
cust_obj[5].serve_time=0;
cust_obj[6].cashier_number=2;
cust_obj[6].token_no=2;
cust_obj[6].wait_time=0;
cust_obj[6].serve_time=0;
cust_obj[7].cashier_number=2;
cust_obj[7].token_no=3;
cust_obj[7].wait_time=0;
cust_obj[7].serve_time=0;
cust_obj[8].cashier_number=2;
cust_obj[8].token_no=4;
cust_obj[8].wait_time=0;
cust_obj[8].serve_time=0;
cust_obj[9].cashier_number=2;
cust_obj[9].token_no=5;
cust_obj[9].wait_time=0;
cust_obj[9].serve_time=0;
cashier_obj[0].cashier_id=1;
cashier_obj[1].cashier_id=2;
cust_obj[0].entry_time=0;
cust_obj[1].entry_time=0;
cust_obj[2].entry_time=0;
cust_obj[3].entry_time=0;
cust_obj[4].entry_time=0;
cust_obj[5].entry_time=0;
cust_obj[6].entry_time=0;
cust_obj[7].entry_time=0;
cust_obj[8].entry_time=0;
cust_obj[9].entry_time=0;
cust_obj[0].count_time=0;
cust_obj[1].count_time=0;
cust_obj[2].count_time=0;
cust_obj[3].count_time=0;
cust_obj[4].count_time=0;
cust_obj[5].count_time=0;
cust_obj[6].count_time=0;
cust_obj[7].count_time=0;
cust_obj[8].count_time=0;
cust_obj[9].count_time=0;
int token_first_cashier;
int token_second_cashier;
int counter_one_serve_token=6;
int counter_two_serve_token=6;
int z=0;
cashier_obj[0].total_serve_time=0;
cashier_obj[1].total_serve_time=0;
while(counter)
{
for(;z<=99;z++)
{
if(cust_obj[z].cashier_number==1)
{
cust_obj[z].serve_time=rand()%10 +1;
cashier_obj[0].total_serve_time+=cust_obj[z].serve_time;
}
if(cust_obj[z].cashier_number==2)
{
cust_obj[z].serve_time=rand()%10 +1;
cashier_obj[1].total_serve_time+=cust_obj[z].serve_time;
}
for(int x=0;x<100;x++)
{
if(cust_obj[x].serve_time==0 &&
cust_obj[x].wait_time!=-1)
{
cust_obj[x].wait_time+=cust_obj[z].serve_time;
}
}
for(int k=1;k<=cust_obj[z].serve_time;k++)
{
if(f<=100)
{
int check1=rand()%2;
if(check1!=0 && cust_obj[f].cashier_number==0
&& cust_obj[z].cashier_number==1)
{ for(int d=1;d<=check1 &&
f<100;d++)
{
cust_obj[f].entry_time = check1;
cust_obj[f].wait_time=0;
cust_obj[f].serve_time=0;
cust_obj[f].cashier_number =1;
counter_one_serve_token++;
cust_obj[f].token_no=counter_one_serve_token;
f++;
}
}
int check2=rand() % 2;
if(check2!=0&& cust_obj[f].cashier_number==0
&& cust_obj[z].cashier_number==2)
{
for(int d=1;d<=check2& f<100;d++)
{
cust_obj[f].entry_time = rand() % 10 + 1;
cust_obj[f].cashier_number =2;
cust_obj[f].wait_time=0;
cust_obj[f].serve_time=0;
counter_two_serve_token++;
cust_obj[z].token_no=counter_two_serve_token;
f++;
}
}
}
}
}
int check_serve=0;
int check_wait=0;
for(int b=0;b<100;b++)
{
if(cust_obj[b].wait_time>=0)
{
check_wait++;
}
if(cust_obj[b].serve_time>=0 &&
cust_obj[b].wait_time>=0)
{
check_serve++;
}
}
if(check_serve==check_wait)
break;
else
{
cout<<"Wrong Input";
}
}
}
cout<<"TIMEn";
cout<<"Number of cashiers:2n";
cout<<"Number of customers:100n";
cout<<"Total time served by Cashier
1:"<<cashier_obj[0].total_serve_time<<"n";
cout<<"Total time served by Cashier
2:"<<cashier_obj[1].total_serve_time<<"n";
int average_wait=0;
for(int g=0;g<100;g++)
{
average_wait+=cust_obj[g].wait_time;
}
cout<<"Average
Wait:"<<(average_wait=average_wait/100)<<"n";
cout<<"Longest wait for 30 minutes:n";
for(g=0;g<100;g++)
{
if(cust_obj[g].wait_time>=30 && cust_obj[g].wait_time<60)
average_wait+=cust_obj[g].wait_time;
}
cout<<"Longest wait for 60 minutes:n";
for(g=0;g<100;g++)
{
if(cust_obj[g].wait_time>=60 && cust_obj[g].wait_time<120)
cout<<"Customer number:"<<cust_obj[g].cust_id<<"n";
}
cout<<"Longest wait for 120 minutes:n";
for(g=0;g<100;g++)
{
if(cust_obj[g].wait_time>=120 && cust_obj[g].wait_time<480)
cout<<"Customer number:"<<cust_obj[g].cust_id<<"n";
}
cout<<"Longest wait for 480 minutes:n";
for(g=0;g<100;g++)
{
if(cust_obj[g].wait_time>=480)
cout<<"Customer number:"<<cust_obj[g].cust_id<<"n";
}
}
simulation/SIMULA~1.CPPsimulation/SIMULA~1.CPP#include
<iostream.h>
#include<stdlib.h>
struct customers
{
int cust_id;
long wait_time;
int count_time;
int entry_time;
int cashier_number;
int serve_time;
int token_no;
};
struct cashier
{
int cashier_id;
int cust_served;
int total_serve_time;
};
void main()
{
int counter=1;
int serve_time=0;
customers cust_obj[100];
cashier cashier_obj[2];
int d=1;
for(int i=0;i<100;i++)
{
cust_obj[i].cust_id=d;
d++;
}
int number_of_customers;
cashier_obj;
int choice;
cout<<"Enter 1 to start simulation:n";
cin>>choice;
int f=10;
for(int q=0;q<100;q++)
cust_obj[q].wait_time=-1;
for(q=0;q<100;q++)
cust_obj[q].serve_time=-1;
if(choice==1)
{
cust_obj[0].cashier_number=1;
cust_obj[0].token_no=1;
cust_obj[1].cashier_number=1;
cust_obj[1].wait_time=0;
cust_obj[1].serve_time=0;
cust_obj[1].token_no=2;
cust_obj[2].cashier_number=1;
cust_obj[2].wait_time=0;
cust_obj[2].serve_time=0;
cust_obj[2].token_no=3;
cust_obj[3].cashier_number=1;
cust_obj[3].wait_time=0;
cust_obj[3].serve_time=0;
cust_obj[3].token_no=4;
cust_obj[4].cashier_number=1;
cust_obj[4].token_no=5;
cust_obj[4].wait_time=0;
cust_obj[4].serve_time=0;
cust_obj[5].cashier_number=2;
cust_obj[5].token_no=1;
cust_obj[5].wait_time=0;
cust_obj[5].serve_time=0;
cust_obj[6].cashier_number=2;
cust_obj[6].token_no=2;
cust_obj[6].wait_time=0;
cust_obj[6].serve_time=0;
cust_obj[7].cashier_number=2;
cust_obj[7].token_no=3;
cust_obj[7].wait_time=0;
cust_obj[7].serve_time=0;
cust_obj[8].cashier_number=2;
cust_obj[8].token_no=4;
cust_obj[8].wait_time=0;
cust_obj[8].serve_time=0;
cust_obj[9].cashier_number=2;
cust_obj[9].token_no=5;
cust_obj[9].wait_time=0;
cust_obj[9].serve_time=0;
cashier_obj[0].cashier_id=1;
cashier_obj[1].cashier_id=2;
cust_obj[0].entry_time=0;
cust_obj[1].entry_time=0;
cust_obj[2].entry_time=0;
cust_obj[3].entry_time=0;
cust_obj[4].entry_time=0;
cust_obj[5].entry_time=0;
cust_obj[6].entry_time=0;
cust_obj[7].entry_time=0;
cust_obj[8].entry_time=0;
cust_obj[9].entry_time=0;
cust_obj[0].count_time=0;
cust_obj[1].count_time=0;
cust_obj[2].count_time=0;
cust_obj[3].count_time=0;
cust_obj[4].count_time=0;
cust_obj[5].count_time=0;
cust_obj[6].count_time=0;
cust_obj[7].count_time=0;
cust_obj[8].count_time=0;
cust_obj[9].count_time=0;
int token_first_cashier;
int token_second_cashier;
int counter_one_serve_token=6;
int counter_two_serve_token=6;
int z=0;
cashier_obj[0].total_serve_time=0;
cashier_obj[1].total_serve_time=0;
while(counter)
{
for(;z<=99;z++)
{
if(cust_obj[z].cashier_number==1)
{
cust_obj[z].serve_time=rand()%10+1;
cashier_obj[0].total_serve_time+=cust_obj[z].serve_ti
me;
}
if(cust_obj[z].cashier_number==2)
{
cust_obj[z].serve_time=rand()%10+1;
cashier_obj[1].total_serve_time+=cust_obj[z].serve_ti
me;
}
for(int x=0;x<100;x++)
{
if(cust_obj[x].serve_time==0&& cust_obj[x].wait_time!=-1)
{
cust_obj[x].wait_time+=cust_obj[z].serve_time;
}
}
for(int k=1;k<=cust_obj[z].serve_time;k++)
{
if(f<=100)
{
int check1=rand()%2;
if(check1!=0&& cust_obj[f].cashier_number==0&& cust_obj[z]
.cashier_number==1)
{for(int d=1;d<=check1 && f<100;d++)
{
cust_obj[f].entry_time = check1;
cust_obj[f].wait_time=0;
cust_obj[f].serve_time=0;
cust_obj[f].cashier_number =1;
counter_one_serve_token++;
cust_obj[f].token_no=counter_one_serve_token;
f++;
}
}
int check2=rand()%2;
if(check2!=0&& cust_obj[f].cashier_number==0&& cust_obj[z]
.cashier_number==2)
{
for(int d=1;d<=check2& f<100;d++)
{
cust_obj[f].entry_time = rand()%10+1;
cust_obj[f].cashier_number =2;
cust_obj[f].wait_time=0;
cust_obj[f].serve_time=0;
counter_two_serve_token++;
cust_obj[z].token_no=counter_two_serve_token;
f++;
}
}
}
}
}
int check_serve=0;
int check_wait=0;
for(int b=0;b<100;b++)
{
if(cust_obj[b].wait_time>=0)
{
check_wait++;
}
if(cust_obj[b].serve_time>=0&& cust_obj[b].wait_time>=0)
{
check_serve++;
}
}
if(check_serve==check_wait)
break;
else
{
cout<<"Wrong Input";
}
}
}
cout<<"TIMEn";
cout<<"Number of cashiers:2n";
cout<<"Number of customers:100n";
cout<<"Total time served by Cashier 1:"<<cashier_obj[0].total_
serve_time<<"n";
cout<<"Total time served by Cashier 2:"<<cashier_obj[1].total_
serve_time<<"n";
int average_wait=0;
for(int g=0;g<100;g++)
{
average_wait+=cust_obj[g].wait_time;
}
cout<<"Average Wait:"<<(average_wait=average_wait/100)<<"
n";
cout<<"Longest wait for 30 minutes:n";
for(g=0;g<100;g++)
{
if(cust_obj[g].wait_time>=30&& cust_obj[g].wait_time<60)
average_wait+=cust_obj[g].wait_time;
}
cout<<"Longest wait for 60 minutes:n";
for(g=0;g<100;g++)
{
if(cust_obj[g].wait_time>=60&& cust_obj[g].wait_time<120)
cout<<"Customer number:"<<cust_obj[g].cust_id<<"n";
}
cout<<"Longest wait for 120 minutes:n";
for(g=0;g<100;g++)
{
if(cust_obj[g].wait_time>=120&& cust_obj[g].wait_time<480)
cout<<"Customer number:"<<cust_obj[g].cust_id<<"n";
}
cout<<"Longest wait for 480 minutes:n";
for(g=0;g<100;g++)
{
if(cust_obj[g].wait_time>=480)
cout<<"Customer number:"<<cust_obj[g].cust_id<<"n";
}
}

More Related Content

Similar to #includeiostream.h#includestdlib.hstruct customers{.docx

Computer_Practicals-file.doc.pdf
Computer_Practicals-file.doc.pdfComputer_Practicals-file.doc.pdf
Computer_Practicals-file.doc.pdf
HIMANSUKUMAR12
 
Please use the code below and make it operate as one program- Notating.pdf
Please use the code below and make it operate as one program- Notating.pdfPlease use the code below and make it operate as one program- Notating.pdf
Please use the code below and make it operate as one program- Notating.pdf
seoagam1
 
i need to modify this c++ so when the user enter services thats not an.docx
i need to modify this c++ so when the user enter services thats not an.docxi need to modify this c++ so when the user enter services thats not an.docx
i need to modify this c++ so when the user enter services thats not an.docx
hendriciraida
 
i want to add to this c++ code a condition so that you can only chose.docx
i want to add to this c++ code a condition so that you can only chose.docxi want to add to this c++ code a condition so that you can only chose.docx
i want to add to this c++ code a condition so that you can only chose.docx
hendriciraida
 
#include iostream #include string #include invalidHr.h.pdf
 #include iostream #include string #include invalidHr.h.pdf #include iostream #include string #include invalidHr.h.pdf
#include iostream #include string #include invalidHr.h.pdf
APMRETAIL
 

Similar to #includeiostream.h#includestdlib.hstruct customers{.docx (20)

STOCK APPLICATION USING CORBA
STOCK APPLICATION USING CORBASTOCK APPLICATION USING CORBA
STOCK APPLICATION USING CORBA
 
Bank management system project in c++ with graphics
Bank management system project in c++ with graphicsBank management system project in c++ with graphics
Bank management system project in c++ with graphics
 
Computer_Practicals-file.doc.pdf
Computer_Practicals-file.doc.pdfComputer_Practicals-file.doc.pdf
Computer_Practicals-file.doc.pdf
 
timingExercise
timingExercisetimingExercise
timingExercise
 
Asssignment2
Asssignment2 Asssignment2
Asssignment2
 
C Programming :- An Example
C Programming :- An Example C Programming :- An Example
C Programming :- An Example
 
Program Kasir c++(case ROti88)
Program Kasir c++(case ROti88)Program Kasir c++(case ROti88)
Program Kasir c++(case ROti88)
 
C++ 4
C++ 4C++ 4
C++ 4
 
Cs pritical file
Cs pritical fileCs pritical file
Cs pritical file
 
Please use the code below and make it operate as one program- Notating.pdf
Please use the code below and make it operate as one program- Notating.pdfPlease use the code below and make it operate as one program- Notating.pdf
Please use the code below and make it operate as one program- Notating.pdf
 
Aplikasi menghitung matematika dengan c++
Aplikasi menghitung matematika dengan c++Aplikasi menghitung matematika dengan c++
Aplikasi menghitung matematika dengan c++
 
i need to modify this c++ so when the user enter services thats not an.docx
i need to modify this c++ so when the user enter services thats not an.docxi need to modify this c++ so when the user enter services thats not an.docx
i need to modify this c++ so when the user enter services thats not an.docx
 
C++ file
C++ fileC++ file
C++ file
 
C++ file
C++ fileC++ file
C++ file
 
Cpp c++ 1
Cpp c++ 1Cpp c++ 1
Cpp c++ 1
 
i want to add to this c++ code a condition so that you can only chose.docx
i want to add to this c++ code a condition so that you can only chose.docxi want to add to this c++ code a condition so that you can only chose.docx
i want to add to this c++ code a condition so that you can only chose.docx
 
#include iostream #include string #include invalidHr.h.pdf
 #include iostream #include string #include invalidHr.h.pdf #include iostream #include string #include invalidHr.h.pdf
#include iostream #include string #include invalidHr.h.pdf
 
Penjualan swalayan
Penjualan swalayanPenjualan swalayan
Penjualan swalayan
 
CPP Language Basics - Reference
CPP Language Basics - ReferenceCPP Language Basics - Reference
CPP Language Basics - Reference
 
12th CBSE Practical File
12th CBSE Practical File12th CBSE Practical File
12th CBSE Practical File
 

More from katherncarlyle

After having learned about Cognitive Psychology and Humaistic Psycho.docx
After having learned about Cognitive Psychology and Humaistic Psycho.docxAfter having learned about Cognitive Psychology and Humaistic Psycho.docx
After having learned about Cognitive Psychology and Humaistic Psycho.docx
katherncarlyle
 
Advisory from Professionals Preparing Information .docx
Advisory from Professionals Preparing Information .docxAdvisory from Professionals Preparing Information .docx
Advisory from Professionals Preparing Information .docx
katherncarlyle
 
After completing the assigned readings and watching the provided.docx
After completing the assigned readings and watching the provided.docxAfter completing the assigned readings and watching the provided.docx
After completing the assigned readings and watching the provided.docx
katherncarlyle
 
African Americans men are at a greater risk for developing prostate .docx
African Americans men are at a greater risk for developing prostate .docxAfrican Americans men are at a greater risk for developing prostate .docx
African Americans men are at a greater risk for developing prostate .docx
katherncarlyle
 
Advocacy Through LegislationIdentify a problem or .docx
Advocacy Through LegislationIdentify a problem or .docxAdvocacy Through LegislationIdentify a problem or .docx
Advocacy Through LegislationIdentify a problem or .docx
katherncarlyle
 
Advanced pathoRespond to Stacy and Sonia 1 day agoStacy A.docx
Advanced pathoRespond to  Stacy and Sonia 1 day agoStacy A.docxAdvanced pathoRespond to  Stacy and Sonia 1 day agoStacy A.docx
Advanced pathoRespond to Stacy and Sonia 1 day agoStacy A.docx
katherncarlyle
 
Adopting Enterprise Risk Management inToday’s Wo.docx
Adopting Enterprise Risk Management inToday’s Wo.docxAdopting Enterprise Risk Management inToday’s Wo.docx
Adopting Enterprise Risk Management inToday’s Wo.docx
katherncarlyle
 
Addisons diseaseYou may use the textbook as one reference a.docx
Addisons diseaseYou may use the textbook as one reference a.docxAddisons diseaseYou may use the textbook as one reference a.docx
Addisons diseaseYou may use the textbook as one reference a.docx
katherncarlyle
 
AdultGeriatric DepressionIntroduction According to Mace.docx
AdultGeriatric DepressionIntroduction According to Mace.docxAdultGeriatric DepressionIntroduction According to Mace.docx
AdultGeriatric DepressionIntroduction According to Mace.docx
katherncarlyle
 
Adopt-a-Plant Project guidelinesOverviewThe purpose of this.docx
Adopt-a-Plant Project guidelinesOverviewThe purpose of this.docxAdopt-a-Plant Project guidelinesOverviewThe purpose of this.docx
Adopt-a-Plant Project guidelinesOverviewThe purpose of this.docx
katherncarlyle
 
Adolescent development is broad and wide-ranging, including phys.docx
Adolescent development is broad and wide-ranging, including phys.docxAdolescent development is broad and wide-ranging, including phys.docx
Adolescent development is broad and wide-ranging, including phys.docx
katherncarlyle
 

More from katherncarlyle (20)

After reading chapter 4, evaluate the history of the Data Encryp.docx
After reading chapter 4, evaluate the history of the Data Encryp.docxAfter reading chapter 4, evaluate the history of the Data Encryp.docx
After reading chapter 4, evaluate the history of the Data Encryp.docx
 
After reading Chapter 2 and the Required Resources please discuss th.docx
After reading Chapter 2 and the Required Resources please discuss th.docxAfter reading Chapter 2 and the Required Resources please discuss th.docx
After reading Chapter 2 and the Required Resources please discuss th.docx
 
After reading chapters 16 and 17 post a short reflection, approximat.docx
After reading chapters 16 and 17 post a short reflection, approximat.docxAfter reading chapters 16 and 17 post a short reflection, approximat.docx
After reading chapters 16 and 17 post a short reflection, approximat.docx
 
After reading chapter 3, analyze the history of Caesar Cypher an.docx
After reading chapter 3, analyze the history of Caesar Cypher an.docxAfter reading chapter 3, analyze the history of Caesar Cypher an.docx
After reading chapter 3, analyze the history of Caesar Cypher an.docx
 
After having learned about Cognitive Psychology and Humaistic Psycho.docx
After having learned about Cognitive Psychology and Humaistic Psycho.docxAfter having learned about Cognitive Psychology and Humaistic Psycho.docx
After having learned about Cognitive Psychology and Humaistic Psycho.docx
 
Advisory from Professionals Preparing Information .docx
Advisory from Professionals Preparing Information .docxAdvisory from Professionals Preparing Information .docx
Advisory from Professionals Preparing Information .docx
 
After completing the assigned readings and watching the provided.docx
After completing the assigned readings and watching the provided.docxAfter completing the assigned readings and watching the provided.docx
After completing the assigned readings and watching the provided.docx
 
Advocacy is a vital component of the early childhood professiona.docx
Advocacy is a vital component of the early childhood professiona.docxAdvocacy is a vital component of the early childhood professiona.docx
Advocacy is a vital component of the early childhood professiona.docx
 
After completing this weeks assignment...   Share with your classma.docx
After completing this weeks assignment...   Share with your classma.docxAfter completing this weeks assignment...   Share with your classma.docx
After completing this weeks assignment...   Share with your classma.docx
 
African Americans men are at a greater risk for developing prostate .docx
African Americans men are at a greater risk for developing prostate .docxAfrican Americans men are at a greater risk for developing prostate .docx
African Americans men are at a greater risk for developing prostate .docx
 
Advances over the last few decades have brought innovative and c.docx
Advances over the last few decades have brought innovative and c.docxAdvances over the last few decades have brought innovative and c.docx
Advances over the last few decades have brought innovative and c.docx
 
Advocacy is a vital component of the early childhood professional’s .docx
Advocacy is a vital component of the early childhood professional’s .docxAdvocacy is a vital component of the early childhood professional’s .docx
Advocacy is a vital component of the early childhood professional’s .docx
 
Advocacy Through LegislationIdentify a problem or .docx
Advocacy Through LegislationIdentify a problem or .docxAdvocacy Through LegislationIdentify a problem or .docx
Advocacy Through LegislationIdentify a problem or .docx
 
Advanced pathoRespond to Stacy and Sonia 1 day agoStacy A.docx
Advanced pathoRespond to  Stacy and Sonia 1 day agoStacy A.docxAdvanced pathoRespond to  Stacy and Sonia 1 day agoStacy A.docx
Advanced pathoRespond to Stacy and Sonia 1 day agoStacy A.docx
 
After completing the reading this week, we reflect on a few ke.docx
After completing the reading this week, we reflect on a few ke.docxAfter completing the reading this week, we reflect on a few ke.docx
After completing the reading this week, we reflect on a few ke.docx
 
Adopting Enterprise Risk Management inToday’s Wo.docx
Adopting Enterprise Risk Management inToday’s Wo.docxAdopting Enterprise Risk Management inToday’s Wo.docx
Adopting Enterprise Risk Management inToday’s Wo.docx
 
Addisons diseaseYou may use the textbook as one reference a.docx
Addisons diseaseYou may use the textbook as one reference a.docxAddisons diseaseYou may use the textbook as one reference a.docx
Addisons diseaseYou may use the textbook as one reference a.docx
 
AdultGeriatric DepressionIntroduction According to Mace.docx
AdultGeriatric DepressionIntroduction According to Mace.docxAdultGeriatric DepressionIntroduction According to Mace.docx
AdultGeriatric DepressionIntroduction According to Mace.docx
 
Adopt-a-Plant Project guidelinesOverviewThe purpose of this.docx
Adopt-a-Plant Project guidelinesOverviewThe purpose of this.docxAdopt-a-Plant Project guidelinesOverviewThe purpose of this.docx
Adopt-a-Plant Project guidelinesOverviewThe purpose of this.docx
 
Adolescent development is broad and wide-ranging, including phys.docx
Adolescent development is broad and wide-ranging, including phys.docxAdolescent development is broad and wide-ranging, including phys.docx
Adolescent development is broad and wide-ranging, including phys.docx
 

Recently uploaded

1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
QucHHunhnh
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
QucHHunhnh
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
ciinovamais
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
KarakKing
 

Recently uploaded (20)

1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Dyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxDyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptx
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptx
 

#includeiostream.h#includestdlib.hstruct customers{.docx