SlideShare a Scribd company logo
1 of 13
Download to read offline
การทาซ้า 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 tryagain");
}
}
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;
}
Week7

More Related Content

What's hot

What's hot (20)

Bubble Sort
Bubble SortBubble Sort
Bubble Sort
 
Avl tree
Avl treeAvl tree
Avl tree
 
Git avançado
Git avançadoGit avançado
Git avançado
 
Functional php
Functional phpFunctional php
Functional php
 
What is recursion?
What is recursion? What is recursion?
What is recursion?
 
Oopsprc1e
Oopsprc1eOopsprc1e
Oopsprc1e
 
Add tab jtabbedpane
Add tab jtabbedpaneAdd tab jtabbedpane
Add tab jtabbedpane
 
Tu1
Tu1Tu1
Tu1
 
Hashing endereçamento aberto - main
Hashing endereçamento aberto - mainHashing endereçamento aberto - main
Hashing endereçamento aberto - main
 
Intro to c programming
Intro to c programmingIntro to c programming
Intro to c programming
 
Hashing enderecamento aberto bean - bean
Hashing enderecamento aberto bean - beanHashing enderecamento aberto bean - bean
Hashing enderecamento aberto bean - bean
 
Insertion sort
Insertion sortInsertion sort
Insertion sort
 
How to Vim - for beginners
How to Vim - for beginnersHow to Vim - for beginners
How to Vim - for beginners
 
8.1
8.18.1
8.1
 
Testing CLI tools with Go
Testing CLI tools with GoTesting CLI tools with Go
Testing CLI tools with Go
 
ICP - Lecture 9
ICP - Lecture 9ICP - Lecture 9
ICP - Lecture 9
 
flowChart
flowChartflowChart
flowChart
 
Data Structures : array operations in c program
Data Structures : array operations in c program Data Structures : array operations in c program
Data Structures : array operations in c program
 
Fila de caracteres
Fila de caracteresFila de caracteres
Fila de caracteres
 
Bankers Algo Implementation
Bankers Algo ImplementationBankers Algo Implementation
Bankers Algo Implementation
 

Viewers also liked (14)

Asignacion 1
Asignacion 1Asignacion 1
Asignacion 1
 
Informe a 1
Informe a 1Informe a 1
Informe a 1
 
Verde oliva-224
Verde oliva-224Verde oliva-224
Verde oliva-224
 
2013 Overview - Oxfam AU Office
2013 Overview - Oxfam AU Office2013 Overview - Oxfam AU Office
2013 Overview - Oxfam AU Office
 
Michelle sinibaldi
Michelle sinibaldiMichelle sinibaldi
Michelle sinibaldi
 
voley
voleyvoley
voley
 
Diapositivas tic
Diapositivas ticDiapositivas tic
Diapositivas tic
 
scan knjiga od one
scan knjiga od onescan knjiga od one
scan knjiga od one
 
Aprender por proyectos
Aprender por proyectosAprender por proyectos
Aprender por proyectos
 
Tecnologia jl
Tecnologia jlTecnologia jl
Tecnologia jl
 
Bodmin - Essential 6-monthly Finance Directors' Update – Nov/Dec 2016
Bodmin - Essential 6-monthly Finance Directors' Update – Nov/Dec 2016 Bodmin - Essential 6-monthly Finance Directors' Update – Nov/Dec 2016
Bodmin - Essential 6-monthly Finance Directors' Update – Nov/Dec 2016
 
Tutorial 6 (1)
Tutorial 6 (1)Tutorial 6 (1)
Tutorial 6 (1)
 
As the light slowly growth in the dark (1)
As the light slowly growth in the dark (1)As the light slowly growth in the dark (1)
As the light slowly growth in the dark (1)
 
Kosta Games Business Profile
Kosta Games Business ProfileKosta Games Business Profile
Kosta Games Business Profile
 

Similar to Week7

C basics
C basicsC basics
C basics
MSc CST
 
ภาษาซี
ภาษาซีภาษาซี
ภาษาซี
kramsri
 
ภาษาซี
ภาษาซีภาษาซี
ภาษาซี
kramsri
 
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
alish sha
 

Similar to Week7 (20)

5 c control statements looping
5  c control statements looping5  c control statements looping
5 c control statements looping
 
12 lec 12 loop
12 lec 12 loop 12 lec 12 loop
12 lec 12 loop
 
C programms
C programmsC programms
C programms
 
C basics
C basicsC basics
C basics
 
Practical File of C Language
Practical File of C LanguagePractical File of C Language
Practical File of C Language
 
6 c control statements branching &amp; jumping
6 c control statements branching &amp; jumping6 c control statements branching &amp; jumping
6 c control statements branching &amp; jumping
 
DataStructures notes
DataStructures notesDataStructures notes
DataStructures notes
 
Program flowchart
Program flowchartProgram flowchart
Program flowchart
 
ภาษาซี
ภาษาซีภาษาซี
ภาษาซี
 
ภาษาซี
ภาษาซีภาษาซี
ภาษาซี
 
Lab loop
Lab loopLab loop
Lab loop
 
Hangman Game Programming in C (coding)
Hangman Game Programming in C (coding)Hangman Game Programming in C (coding)
Hangman Game Programming in C (coding)
 
4 operators, expressions &amp; statements
4  operators, expressions &amp; statements4  operators, expressions &amp; statements
4 operators, expressions &amp; statements
 
Cpds lab
Cpds labCpds lab
Cpds lab
 
Introduction to c part -1
Introduction to c   part -1Introduction to c   part -1
Introduction to c part -1
 
Double linked list
Double linked listDouble linked list
Double linked list
 
Decision making and branching
Decision making and branchingDecision making and branching
Decision making and branching
 
C
CC
C
 
Loop control structure
Loop control structureLoop control structure
Loop control structure
 
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
 

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

Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
AnaAcapella
 

Recently uploaded (20)

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...
 
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...
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
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
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptx
 
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Ữ Â...
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfUnit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptx
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - English
 
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
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 

Week7