Switch

#include<stdio.h>

#include<conio.h>

#include<stdlib.h>

main ()

{

    printf("Nisarat Kramsri     No.16        M.6/1nn");

Nisarat Kramsri         No.16        M.6/1

       int choice;

       float num1,num2;                  num1,num2

       printf("Please select choicen");

       printf("1.Program additionn");

       printf("2.Program substractionn");

       printf("3.Exit programn");

       scanf("%d",&choice);
switch(choice)                switch

   case 3:exit(3);

   printf("Enter number1: ");

   scanf("%f",&num1);

   printf("Enter number2: ");

   scanf("%f",&num2);

   switch(choice)               switch

   {

   case 1:

printf("%.2f+%.2f=%.2fn",num1,num2,num1+num2);break;




   case 2: printf("%.2f-%.2f=%.2fn",num1,num2,num1-
num2);break;



   }

   getch();
}
คำสั่ง Switch
Flowchart




              nisarat kramsri
            No.16 M.




                   Choice




    yes
              Choice=3


                       no




Choice=1                        Choice=2



Num1+num2                       Num1-num2

More Related Content

DOCX
คำสั่ง Switch
DOCX
Program to illustrate Switch, Goto and Exit statements.
PDF
Program to reflecta triangle
PDF
Switch
PDF
Algoritmos ensambladores
DOCX
Financialmodeling
PPTX
ภาษาซี
PDF
The Design Innovation Cooperative
คำสั่ง Switch
Program to illustrate Switch, Goto and Exit statements.
Program to reflecta triangle
Switch
Algoritmos ensambladores
Financialmodeling
ภาษาซี
The Design Innovation Cooperative

Viewers also liked (14)

DOCX
คำสั่ง For
PPT
Sample template to report internet dns's performance
PPTX
งานนำเสนอ1
PDF
Grand strategi agar koperasi1
PPTX
Ekonomi koperasi
PPTX
accreditation 2
PPS
Curiosites 11
PPTX
Linear day 17
DOCX
คำสั่ง Do while
DOCX
คำสั่ง Switch.2
DOCX
คำสั่ง Do while
PPT
GPRS/EDGE Basics / knowledge sharing
PPT
Aula3 sistemas lineares - parte1
PDF
Treliça inclinada-pronto11
คำสั่ง For
Sample template to report internet dns's performance
งานนำเสนอ1
Grand strategi agar koperasi1
Ekonomi koperasi
accreditation 2
Curiosites 11
Linear day 17
คำสั่ง Do while
คำสั่ง Switch.2
คำสั่ง Do while
GPRS/EDGE Basics / knowledge sharing
Aula3 sistemas lineares - parte1
Treliça inclinada-pronto11
Ad

Similar to คำสั่ง Switch (20)

PDF
ตัวอย่างการเขียนโปรแกรม โดยใช้ฟังก์ชัน
PPTX
C Programming Example
DOC
Numerical Methods in C
PDF
C programs
PPTX
ภาษาซี
DOCX
PDF
CP Handout#6
PDF
Progr3
DOCX
C lab manaual
PPTX
SIMPLE C PROGRAMS - SARASWATHI RAMALINGAM
PDF
Computer programming subject notes. Quick easy notes for C Programming.Cheat ...
PDF
1. Translation program#includestdio.h#includeconio.h#incl.pdf
DOCX
SaraPIC
DOCX
C programs
DOCX
cpract.docx
DOCX
Practical File of C Language
PDF
Incorporate the SOR method in the multigridTest-m and apply the multig.pdf
PDF
7 functions
DOCX
Computer graphics programs in c++
PDF
The solution manual of programming in ansi by Robin
ตัวอย่างการเขียนโปรแกรม โดยใช้ฟังก์ชัน
C Programming Example
Numerical Methods in C
C programs
ภาษาซี
CP Handout#6
Progr3
C lab manaual
SIMPLE C PROGRAMS - SARASWATHI RAMALINGAM
Computer programming subject notes. Quick easy notes for C Programming.Cheat ...
1. Translation program#includestdio.h#includeconio.h#incl.pdf
SaraPIC
C programs
cpract.docx
Practical File of C Language
Incorporate the SOR method in the multigridTest-m and apply the multig.pdf
7 functions
Computer graphics programs in c++
The solution manual of programming in ansi by Robin
Ad

More from kramsri (7)

DOCX
ข อสอบคอม 5 ข อส่ง
DOCX
ข อสอบคอม #6
DOCX
คำสั่ง Switch
DOCX
ประเม นรายงาน กล _มท__ 2 คำส__งควบค_มข__นพ__นฐานภาษาซ_ (1)
DOCX
ประเม นรายงาน กล _มท__ 2 คำส__งควบค_มข__นพ__นฐานภาษาซ_
DOCX
ความคิดเห็นเพื่อน(แบบประเมิน)
DOCX
ประกวดภาพถ่าย
ข อสอบคอม 5 ข อส่ง
ข อสอบคอม #6
คำสั่ง Switch
ประเม นรายงาน กล _มท__ 2 คำส__งควบค_มข__นพ__นฐานภาษาซ_ (1)
ประเม นรายงาน กล _มท__ 2 คำส__งควบค_มข__นพ__นฐานภาษาซ_
ความคิดเห็นเพื่อน(แบบประเมิน)
ประกวดภาพถ่าย

คำสั่ง Switch

  • 1. Switch #include<stdio.h> #include<conio.h> #include<stdlib.h> main () { printf("Nisarat Kramsri No.16 M.6/1nn"); Nisarat Kramsri No.16 M.6/1 int choice; float num1,num2; num1,num2 printf("Please select choicen"); printf("1.Program additionn"); printf("2.Program substractionn"); printf("3.Exit programn"); scanf("%d",&choice);
  • 2. switch(choice) switch case 3:exit(3); printf("Enter number1: "); scanf("%f",&num1); printf("Enter number2: "); scanf("%f",&num2); switch(choice) switch { case 1: printf("%.2f+%.2f=%.2fn",num1,num2,num1+num2);break; case 2: printf("%.2f-%.2f=%.2fn",num1,num2,num1- num2);break; } getch();
  • 3. }
  • 5. Flowchart nisarat kramsri No.16 M. Choice yes Choice=3 no Choice=1 Choice=2 Num1+num2 Num1-num2