SlideShare a Scribd company logo
Week 7
การทาซ้า for loop
ทาการเปิดงานเก่าขึ้นมาก่อน
#include <stdio.h>
void main()
{
char menu;
int counter;
for (counter=1;counter<=4;counter++)
{
printf(" n please insert your order:");
scanf(" %c",&menu);
switch(menu)
{
case'p':printf("papaya salad");
break;
case't' :printf("tomyam kung");
break;
case'i' :printf("padthai");
break;
case'l':printf("labmoo");
break;
default: printf("n try again");
}
}
getch();
return 0;
}
การทาสูตรคูณ
#include <stdio.h>
void main()
{
int counter;
for(counter=1;counter<=12;counter++)
{
printf("2 x%d=%d",counter,counter*2);
}
printf("ngoodbye");
getch();
return0;
}
Loop While
#include <stdio.h>
void main()
{
int counter;
counter=1;
while (counter<=12)
{
printf("2 x%d=%dn",counter,counter*2);
counter++;
}
printf("ngoodbye");
getch();
return 0;
}
Do while
#include <stdio.h>
void main()
{
int counter;
counter=1;
do
{
printf("2 x%d=%dn",counter,counter*2);
counter++;
}while (counter<=12);
printf("goodbye");
getch();
return 0;
}
ลูกค้าทาการกรอกค่าเอง
# include <stdio.h>
void main()
{
int counter,counter1,number;
for(counter1=1;counter1<=5;counter1++)
{
printf("please insert to number:");
scanf("%d",&number);
for(counter=1;counter<=24;counter++)
{
printf("%dx%d=%dn",number,counter,number*counter);
}
}
printf("goodbyen");
getch();
return 0;
}
Week 7

More Related Content

What's hot

Service Workers
Service WorkersService Workers
Service Workers
Artur Felipe Sousa
 
Debugging in Clojure: Finding Light in the Darkness using Emacs and Cursive
Debugging in Clojure: Finding Light in the Darkness using Emacs and CursiveDebugging in Clojure: Finding Light in the Darkness using Emacs and Cursive
Debugging in Clojure: Finding Light in the Darkness using Emacs and Cursive
Ahmad Ragab
 
Fila de caracteres
Fila de caracteresFila de caracteres
Fila de caracteres
Elaine Cecília Gatto
 
One page app with AngularJS
One page app with AngularJSOne page app with AngularJS
One page app with AngularJS
Adam Štipák
 
Hashing endereçamento aberto - main
Hashing endereçamento aberto - mainHashing endereçamento aberto - main
Hashing endereçamento aberto - main
Elaine Cecília Gatto
 
Backup
BackupBackup
Backup
asp7
 
TDC 2016 (Florianópolis) - Vá para o próximo nível - Dicas e truques para a c...
TDC 2016 (Florianópolis) - Vá para o próximo nível - Dicas e truques para a c...TDC 2016 (Florianópolis) - Vá para o próximo nível - Dicas e truques para a c...
TDC 2016 (Florianópolis) - Vá para o próximo nível - Dicas e truques para a c...
Matheus Marabesi
 
ZCPE - PHP Conference 2015
ZCPE   - PHP Conference 2015ZCPE   - PHP Conference 2015
ZCPE - PHP Conference 2015
Matheus Marabesi
 
Hashing enderecamento aberto bean - bean
Hashing enderecamento aberto bean - beanHashing enderecamento aberto bean - bean
Hashing enderecamento aberto bean - bean
Elaine Cecília Gatto
 
JAVASCRIPT NÃO-OBSTRUTIVO com jQuery
JAVASCRIPT NÃO-OBSTRUTIVO com jQueryJAVASCRIPT NÃO-OBSTRUTIVO com jQuery
JAVASCRIPT NÃO-OBSTRUTIVO com jQueryZigotto Tecnologia
 
Introdução a worker 2.0
Introdução a worker 2.0Introdução a worker 2.0
Introdução a worker 2.0
Sérgio Rafael Siqueira
 

What's hot (13)

Service Workers
Service WorkersService Workers
Service Workers
 
Debugging in Clojure: Finding Light in the Darkness using Emacs and Cursive
Debugging in Clojure: Finding Light in the Darkness using Emacs and CursiveDebugging in Clojure: Finding Light in the Darkness using Emacs and Cursive
Debugging in Clojure: Finding Light in the Darkness using Emacs and Cursive
 
Fila de caracteres
Fila de caracteresFila de caracteres
Fila de caracteres
 
One page app with AngularJS
One page app with AngularJSOne page app with AngularJS
One page app with AngularJS
 
Vcs8
Vcs8Vcs8
Vcs8
 
Hashing endereçamento aberto - main
Hashing endereçamento aberto - mainHashing endereçamento aberto - main
Hashing endereçamento aberto - main
 
Backup
BackupBackup
Backup
 
TDC 2016 (Florianópolis) - Vá para o próximo nível - Dicas e truques para a c...
TDC 2016 (Florianópolis) - Vá para o próximo nível - Dicas e truques para a c...TDC 2016 (Florianópolis) - Vá para o próximo nível - Dicas e truques para a c...
TDC 2016 (Florianópolis) - Vá para o próximo nível - Dicas e truques para a c...
 
ZCPE - PHP Conference 2015
ZCPE   - PHP Conference 2015ZCPE   - PHP Conference 2015
ZCPE - PHP Conference 2015
 
Hashing enderecamento aberto bean - bean
Hashing enderecamento aberto bean - beanHashing enderecamento aberto bean - bean
Hashing enderecamento aberto bean - bean
 
JAVASCRIPT NÃO-OBSTRUTIVO com jQuery
JAVASCRIPT NÃO-OBSTRUTIVO com jQueryJAVASCRIPT NÃO-OBSTRUTIVO com jQuery
JAVASCRIPT NÃO-OBSTRUTIVO com jQuery
 
Introdução a worker 2.0
Introdução a worker 2.0Introdução a worker 2.0
Introdução a worker 2.0
 
8.1
8.18.1
8.1
 

Viewers also liked

Week3
Week3Week3
Problemas ambientales
Problemas ambientalesProblemas ambientales
Problemas ambientales
Junior Ludeña
 
WT Men's Basketball Game Notes (11-23-16)
WT Men's Basketball Game Notes (11-23-16)WT Men's Basketball Game Notes (11-23-16)
WT Men's Basketball Game Notes (11-23-16)
West Texas A&M
 
складское оборудование
складское оборудованиескладское оборудование
складское оборудование
Olha Antonets
 
26.5.2016 Riskienarviointi
26.5.2016 Riskienarviointi26.5.2016 Riskienarviointi
26.5.2016 Riskienarviointi
Työterveyslaitos
 
Quality Management System by Signorina Y. Bueno (WMSU-ZC)
Quality Management System by Signorina Y. Bueno (WMSU-ZC)Quality Management System by Signorina Y. Bueno (WMSU-ZC)
Quality Management System by Signorina Y. Bueno (WMSU-ZC)
signorina bueno
 
Vitamin D And Chronic Periodontitis – A Randomised Double Blinded Placebo Con...
Vitamin D And Chronic Periodontitis – A Randomised Double Blinded Placebo Con...Vitamin D And Chronic Periodontitis – A Randomised Double Blinded Placebo Con...
Vitamin D And Chronic Periodontitis – A Randomised Double Blinded Placebo Con...
inventionjournals
 
Latvijas Lauku attīstības programmas 2014.-2020.gadam pasākumi ar lauksaimnie...
Latvijas Lauku attīstības programmas 2014.-2020.gadam pasākumi ar lauksaimnie...Latvijas Lauku attīstības programmas 2014.-2020.gadam pasākumi ar lauksaimnie...
Latvijas Lauku attīstības programmas 2014.-2020.gadam pasākumi ar lauksaimnie...
Ekonomikas ministrija
 
Impacto del tratado de libre comercio entre república ppw
Impacto del tratado de libre comercio entre república ppwImpacto del tratado de libre comercio entre república ppw
Impacto del tratado de libre comercio entre república ppwAracelis Marlene Estevez
 
Home Physiotherapy Bangalore | Rxpress physiotherapy at home | Physiotherapy ...
Home Physiotherapy Bangalore | Rxpress physiotherapy at home | Physiotherapy ...Home Physiotherapy Bangalore | Rxpress physiotherapy at home | Physiotherapy ...
Home Physiotherapy Bangalore | Rxpress physiotherapy at home | Physiotherapy ...
rxpress healthcare
 
Ghaibah wal hudhur (FIEZUL SALAM)
Ghaibah wal hudhur (FIEZUL SALAM)Ghaibah wal hudhur (FIEZUL SALAM)
Ghaibah wal hudhur (FIEZUL SALAM)
FIEZUL SALAM
 

Viewers also liked (16)

Week3
Week3Week3
Week3
 
Resume
ResumeResume
Resume
 
Problemas ambientales
Problemas ambientalesProblemas ambientales
Problemas ambientales
 
cv-laurentlequenne-2
cv-laurentlequenne-2cv-laurentlequenne-2
cv-laurentlequenne-2
 
WT Men's Basketball Game Notes (11-23-16)
WT Men's Basketball Game Notes (11-23-16)WT Men's Basketball Game Notes (11-23-16)
WT Men's Basketball Game Notes (11-23-16)
 
складское оборудование
складское оборудованиескладское оборудование
складское оборудование
 
26.5.2016 Riskienarviointi
26.5.2016 Riskienarviointi26.5.2016 Riskienarviointi
26.5.2016 Riskienarviointi
 
Quality Management System by Signorina Y. Bueno (WMSU-ZC)
Quality Management System by Signorina Y. Bueno (WMSU-ZC)Quality Management System by Signorina Y. Bueno (WMSU-ZC)
Quality Management System by Signorina Y. Bueno (WMSU-ZC)
 
Practica5
Practica5Practica5
Practica5
 
Vitamin D And Chronic Periodontitis – A Randomised Double Blinded Placebo Con...
Vitamin D And Chronic Periodontitis – A Randomised Double Blinded Placebo Con...Vitamin D And Chronic Periodontitis – A Randomised Double Blinded Placebo Con...
Vitamin D And Chronic Periodontitis – A Randomised Double Blinded Placebo Con...
 
Resume Projects Test
Resume Projects TestResume Projects Test
Resume Projects Test
 
Diapositivas de talento
Diapositivas de talentoDiapositivas de talento
Diapositivas de talento
 
Latvijas Lauku attīstības programmas 2014.-2020.gadam pasākumi ar lauksaimnie...
Latvijas Lauku attīstības programmas 2014.-2020.gadam pasākumi ar lauksaimnie...Latvijas Lauku attīstības programmas 2014.-2020.gadam pasākumi ar lauksaimnie...
Latvijas Lauku attīstības programmas 2014.-2020.gadam pasākumi ar lauksaimnie...
 
Impacto del tratado de libre comercio entre república ppw
Impacto del tratado de libre comercio entre república ppwImpacto del tratado de libre comercio entre república ppw
Impacto del tratado de libre comercio entre república ppw
 
Home Physiotherapy Bangalore | Rxpress physiotherapy at home | Physiotherapy ...
Home Physiotherapy Bangalore | Rxpress physiotherapy at home | Physiotherapy ...Home Physiotherapy Bangalore | Rxpress physiotherapy at home | Physiotherapy ...
Home Physiotherapy Bangalore | Rxpress physiotherapy at home | Physiotherapy ...
 
Ghaibah wal hudhur (FIEZUL SALAM)
Ghaibah wal hudhur (FIEZUL SALAM)Ghaibah wal hudhur (FIEZUL SALAM)
Ghaibah wal hudhur (FIEZUL SALAM)
 

Similar to Week 7

12 lec 12 loop
12 lec 12 loop 12 lec 12 loop
12 lec 12 loop
kapil078
 
Workbook_2_Problem_Solving_and_programming.pdf
Workbook_2_Problem_Solving_and_programming.pdfWorkbook_2_Problem_Solving_and_programming.pdf
Workbook_2_Problem_Solving_and_programming.pdf
DrDineshenScientist
 
5 c control statements looping
5  c control statements looping5  c control statements looping
5 c control statements looping
MomenMostafa
 
C programms
C programmsC programms
C programms
Mukund Gandrakota
 
sodapdf-converted into ppt presentation(1).pdf
sodapdf-converted into ppt presentation(1).pdfsodapdf-converted into ppt presentation(1).pdf
sodapdf-converted into ppt presentation(1).pdf
MuhammadMaazShaik
 
DataStructures notes
DataStructures notesDataStructures notes
DataStructures notes
Lakshmi Sarvani Videla
 
C basics
C basicsC basics
C basicsMSc CST
 
Chapter06.PPT
Chapter06.PPTChapter06.PPT
Chapter06.PPT
vamsiKrishnasai3
 
Session05 iteration structure
Session05 iteration structureSession05 iteration structure
Session05 iteration structure
HarithaRanasinghe
 
Program flowchart
Program flowchartProgram flowchart
Program flowchart
Sowri Rajan
 
C programming
C programmingC programming
C programming
Samsil Arefin
 
Bti1022 lab sheet 8
Bti1022 lab sheet 8Bti1022 lab sheet 8
Bti1022 lab sheet 8alish sha
 
Bti1022 lab sheet 8
Bti1022 lab sheet 8Bti1022 lab sheet 8
Bti1022 lab sheet 8alish sha
 
Dti2143 chap 4 control statement part 2
Dti2143 chap 4 control statement part 2Dti2143 chap 4 control statement part 2
Dti2143 chap 4 control statement part 2alish sha
 
C language concept with code apna college.pdf
C language concept with code apna college.pdfC language concept with code apna college.pdf
C language concept with code apna college.pdf
mhande899
 

Similar to Week 7 (20)

12 lec 12 loop
12 lec 12 loop 12 lec 12 loop
12 lec 12 loop
 
Workbook_2_Problem_Solving_and_programming.pdf
Workbook_2_Problem_Solving_and_programming.pdfWorkbook_2_Problem_Solving_and_programming.pdf
Workbook_2_Problem_Solving_and_programming.pdf
 
5 c control statements looping
5  c control statements looping5  c control statements looping
5 c control statements looping
 
C programms
C programmsC programms
C programms
 
Introduction to c part -1
Introduction to c   part -1Introduction to c   part -1
Introduction to c part -1
 
sodapdf-converted into ppt presentation(1).pdf
sodapdf-converted into ppt presentation(1).pdfsodapdf-converted into ppt presentation(1).pdf
sodapdf-converted into ppt presentation(1).pdf
 
DataStructures notes
DataStructures notesDataStructures notes
DataStructures notes
 
C basics
C basicsC basics
C basics
 
Chapter06.PPT
Chapter06.PPTChapter06.PPT
Chapter06.PPT
 
Session05 iteration structure
Session05 iteration structureSession05 iteration structure
Session05 iteration structure
 
Lab loop
Lab loopLab loop
Lab loop
 
Program flowchart
Program flowchartProgram flowchart
Program flowchart
 
Tu1
Tu1Tu1
Tu1
 
ICP - Lecture 9
ICP - Lecture 9ICP - Lecture 9
ICP - Lecture 9
 
C programming
C programmingC programming
C programming
 
Bti1022 lab sheet 8
Bti1022 lab sheet 8Bti1022 lab sheet 8
Bti1022 lab sheet 8
 
Bti1022 lab sheet 8
Bti1022 lab sheet 8Bti1022 lab sheet 8
Bti1022 lab sheet 8
 
C
CC
C
 
Dti2143 chap 4 control statement part 2
Dti2143 chap 4 control statement part 2Dti2143 chap 4 control statement part 2
Dti2143 chap 4 control statement part 2
 
C language concept with code apna college.pdf
C language concept with code apna college.pdfC language concept with code apna college.pdf
C language concept with code apna college.pdf
 

More from WanSurang FK

Week15
Week15Week15
Week15
WanSurang FK
 
Week14
Week14Week14
Week14
WanSurang FK
 
Week13
Week13Week13
Week13
WanSurang FK
 
Week12
Week12Week12
Week12
WanSurang FK
 
Week11
Week11Week11
Week11
WanSurang FK
 
Week10
Week10Week10
Week10
WanSurang FK
 
Week9
Week9Week9
Week8
Week8Week8
Week6
Week6Week6
Week5 (1)
Week5 (1)Week5 (1)
Week5 (1)
WanSurang FK
 
Week4 (2)
Week4 (2)Week4 (2)
Week4 (2)
WanSurang FK
 
Week 3
Week 3Week 3
Week 3
WanSurang FK
 
Week2
Week2Week2
56670274
5667027456670274
56670274
WanSurang FK
 
56670274
5667027456670274
56670274
WanSurang FK
 
Week15
Week15Week15
Week15
WanSurang FK
 
Week14
Week14Week14
Week14
WanSurang FK
 
Week13
Week13Week13
Week13
WanSurang FK
 
Week12
Week12Week12
Week12
WanSurang FK
 
Week11
Week11Week11
Week11
WanSurang FK
 

More from WanSurang FK (20)

Week15
Week15Week15
Week15
 
Week14
Week14Week14
Week14
 
Week13
Week13Week13
Week13
 
Week12
Week12Week12
Week12
 
Week11
Week11Week11
Week11
 
Week10
Week10Week10
Week10
 
Week9
Week9Week9
Week9
 
Week8
Week8Week8
Week8
 
Week6
Week6Week6
Week6
 
Week5 (1)
Week5 (1)Week5 (1)
Week5 (1)
 
Week4 (2)
Week4 (2)Week4 (2)
Week4 (2)
 
Week 3
Week 3Week 3
Week 3
 
Week2
Week2Week2
Week2
 
56670274
5667027456670274
56670274
 
56670274
5667027456670274
56670274
 
Week15
Week15Week15
Week15
 
Week14
Week14Week14
Week14
 
Week13
Week13Week13
Week13
 
Week12
Week12Week12
Week12
 
Week11
Week11Week11
Week11
 

Recently uploaded

ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
Priyankaranawat4
 
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptxChapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Mohd Adib Abd Muin, Senior Lecturer at Universiti Utara Malaysia
 
Digital Artifact 2 - Investigating Pavilion Designs
Digital Artifact 2 - Investigating Pavilion DesignsDigital Artifact 2 - Investigating Pavilion Designs
Digital Artifact 2 - Investigating Pavilion Designs
chanes7
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
heathfieldcps1
 
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
Nguyen Thanh Tu Collection
 
A Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptxA Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptx
thanhdowork
 
Top five deadliest dog breeds in America
Top five deadliest dog breeds in AmericaTop five deadliest dog breeds in America
Top five deadliest dog breeds in America
Bisnar Chase Personal Injury Attorneys
 
Digital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments UnitDigital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments Unit
chanes7
 
Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.
Ashokrao Mane college of Pharmacy Peth-Vadgaon
 
Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
Jean Carlos Nunes Paixão
 
Pride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School DistrictPride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School District
David Douglas School District
 
Normal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of LabourNormal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of Labour
Wasim Ak
 
Assignment_4_ArianaBusciglio Marvel(1).docx
Assignment_4_ArianaBusciglio Marvel(1).docxAssignment_4_ArianaBusciglio Marvel(1).docx
Assignment_4_ArianaBusciglio Marvel(1).docx
ArianaBusciglio
 
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdfUnit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Thiyagu K
 
How to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP ModuleHow to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP Module
Celine George
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
EverAndrsGuerraGuerr
 
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
IreneSebastianRueco1
 
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama UniversityNatural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
Akanksha trivedi rama nursing college kanpur.
 
Delivering Micro-Credentials in Technical and Vocational Education and Training
Delivering Micro-Credentials in Technical and Vocational Education and TrainingDelivering Micro-Credentials in Technical and Vocational Education and Training
Delivering Micro-Credentials in Technical and Vocational Education and Training
AG2 Design
 
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat  Leveraging AI for Diversity, Equity, and InclusionExecutive Directors Chat  Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
TechSoup
 

Recently uploaded (20)

ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
 
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptxChapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
 
Digital Artifact 2 - Investigating Pavilion Designs
Digital Artifact 2 - Investigating Pavilion DesignsDigital Artifact 2 - Investigating Pavilion Designs
Digital Artifact 2 - Investigating Pavilion Designs
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
 
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
 
A Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptxA Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptx
 
Top five deadliest dog breeds in America
Top five deadliest dog breeds in AmericaTop five deadliest dog breeds in America
Top five deadliest dog breeds in America
 
Digital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments UnitDigital Artifact 1 - 10VCD Environments Unit
Digital Artifact 1 - 10VCD Environments Unit
 
Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.
 
Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
 
Pride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School DistrictPride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School District
 
Normal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of LabourNormal Labour/ Stages of Labour/ Mechanism of Labour
Normal Labour/ Stages of Labour/ Mechanism of Labour
 
Assignment_4_ArianaBusciglio Marvel(1).docx
Assignment_4_ArianaBusciglio Marvel(1).docxAssignment_4_ArianaBusciglio Marvel(1).docx
Assignment_4_ArianaBusciglio Marvel(1).docx
 
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdfUnit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdf
 
How to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP ModuleHow to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP Module
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
 
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
 
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama UniversityNatural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
 
Delivering Micro-Credentials in Technical and Vocational Education and Training
Delivering Micro-Credentials in Technical and Vocational Education and TrainingDelivering Micro-Credentials in Technical and Vocational Education and Training
Delivering Micro-Credentials in Technical and Vocational Education and Training
 
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat  Leveraging AI for Diversity, Equity, and InclusionExecutive Directors Chat  Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
 

Week 7