C: switch and casting - PowerPoint PPT Presentation

1 / 7
About This Presentation
Title:

C: switch and casting

Description:

Consider the following code: int x=7, y=5 ; float z; z=x/y; /*Here the value of z is 1 ... The following code is equivalent to the previous one: char c; ... – PowerPoint PPT presentation

Number of Views:36
Avg rating:3.0/5.0
Slides: 8
Provided by: USUA675
Category:

less

Transcript and Presenter's Notes

Title: C: switch and casting


1
C switch and casting
  • jlcv

2
switch
  • Instrucción para elegir una de varias opciones
    (equivale a varios IF)
  • Switch (valor opción)
  • case opción1 instrucciones1 break
  • case opción2 instrucciones2 break
  • case opción3 instrucciones3 break
  • ..
  • default instruccionesDefault break
  • opción debe ser un entero, o char
  • Cada case opción debe ser un valor diferente
    entero o char
  • Se ejecuta la instrucción cuya opción se cumple

3
Ejemplo de switch
  • while (car ! 'f')
  • system("cls")
  • printf("\n SELECCIONE UNA OPCIÓN INGRESANDO LA
    LETRA CORRESPONDIENTE \n\n")
  • printf("ver el directorio de una unidad de
    almacenamiento a\n")
  • printf("sumar dos numeros enteros
    b\n")
  • printf("restar dos numeros enteros
    c\n")
  • printf("multiplicar dos numeros enteros
    d\n")
  • printf("dividir dos numeros enteros
    e\n")
  • printf("\nterminar
    f\n")
  • do cargetchar() while (car ' ' car
    '\n')
  • switch (car)
  • case 'a' system("dir c") break
  • case 'b' printf(ingresa dos numeros ")
    scanf(d d, x, y) printf(La suma es
    d\n, xy) break
  • case 'c' printf(ingresa dos numeros ")
    scanf(d d, x, y) printf(La resta es
    d\n, xy) break
  • case 'd' printf(ingresa dos numeros ")
    scanf(d d, x, y) printf(La multi es
    d\n, xy) break
  • case e printf(ingresa dos numeros ")
    scanf(d d, x, y) printf(La divi es
    d\n, xy) break
  • default printf("Default") break

4
Casting cambiar el valor de un tipo a otro
  • Example 1
  • Consider the code
  • float a 5.25
  • int b (int) a  /Explicit casting from float
    to int. The value of b here is 5/
  • Example 2
  • Consider the code
  • char c A   
  • int x (int) c  /Explicit casting from char to
    int. The value of x here is 65 the ASCII code of
    A/
  • Example 3
  • Consider the following code
  • int x7, y5 
  • float z
  • zx/y /Here the value of z is 1/
  • If we want to get the exact value of 7/5 then we
    need explicit casting from int to float
  • int x7, y5
  • float z
  • z (float)x/(float)y   /Here the value of z is
    1.4/

5
Casting cambiar el valor de un tipo a otro
  • Example 4 Consider the code
  • char c
  • for(c97 clt122 c) printf(c  , c)
  • This code prints
  • a b c d e f g h i j k l m n o p q r s t u v w x y
    z
  • since 97 is the ASCII code of a, 98 is the
    ASCII code of b and 122 is the ASCII code of
    z.
  • The following code is equivalent to the previous
    one
  • char c
  • for(ca cltz c) printf(c  , c)
  • Another equivalent code
  • int x
  • for(x97 xlt122 x) printf(c  ,
    (char)x)   /Explicit casting from int to char/
  • A last equivalent code
  • for(x97 xlt122 x) printf(c  ,
    x) /Implicit casting from int to char thanks to
    c/

6
  • includeltstdio.hgt
  • includeltstdlib.hgt
  • define Z 10
  • define Y 12.0
  •  
  • int A14,B2,X float C7.0,D1.0 char
    E'M',F'N'
  • int main()
  • A/B entrega valor entero
  • AB entrega el resto de la división entera
  • C/D entrega valor de la división con decimales
  • qué imprime?
  • printf("\nd f", (int) C, (float) A)

7
  • includeltstdio.hgt
  • includeltstdlib.hgt
  • define Z 10
  • define Y 12.0
  •  
  • int A14,B2,X float C7.0,D1.0 char
    E'M',F'N'
  • int main()
Write a Comment
User Comments (0)
About PowerShow.com