Clase 01 Ejercicios Resueltos.doc

  • Uploaded by: Profesora Leticia
  • 0
  • 0
  • October 2019
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Clase 01 Ejercicios Resueltos.doc as PDF for free.

More details

  • Words: 467
  • Pages: 3
Ejercicios resueltos Clase 1: 1) Ingresar las edades de tres personas y luego mostrar cual es el promedio de edades. INICIO ESCRIBIR “Ingrese la primer edad” LEER EDAD1 ESCRIBIR “Ingrese la segunda edad” LEER EDAD2 ESCRIBIR “Ingrese la tercer edad” LEER EDAD3 PRMOEDIO = (EDAD1+EDAD2+EDAD3) / 3 ESCRIBIR “El promedio de edades es: “,PROMEDIO FIN Python : EDAD1=input(“Ingrese la primer edad: “) EDAD2=input(“Ingrese la segunda edad: “) EDAD3=input(“Ingrese la tercera edad: “) PROMEDIO = (EDAD1+EDAD2+EDAD3) / 3 print “El promedio de edades es: “ , PROMEDIO

Prueba de Escritorio LEER

PROMEDIO

ESCRIBIR

EDAD1

EDAD2

EDAD3

(EDAD1+EDAD2+EDAD3)/3

PROMEDIO

9

7

8

(9+7+8)/3=8

8

2) Mostrar la superficie de un rectángulo ingresando la base y la altura. INICIO ESCRIBIR “Ingrese la base” LEER BASE ESCRIBIR “Ingrese la Altura” LEER ALTURA SUPERFICIE = BASE * ALTURA ESCRIBIR “La superficie es: “,SUPERFICIE FIN python BASE =input(“Ingrese la base”) ALTURA = input(“Ingrese la Altura”) SUPERFICIE = BASE * ALTURA PRINT “La superficie es: “ ,SUPERFICIE Prueba de Escritorio LEER BASE

ALTURA

SUPERFICIE

ESCRIBIR

BASE*ALTURA

SUPERFICIE

Clase 1: -1-

10

25

10*25=250

250

3) Ingresar la cantidad de horas que trabaja un obrero al mes y el valor de lo que gana por hora para luego Mostrar cual es el sueldo que tiene que cobrar INICIO ESCRIBIR “Ingrese La cantidad de horas “ LEER HORAS ESCRIBIR “Ingrese el valor por hora: “ LEER VALOR SUELDO=HORAS*VALOR ESCRIBIR “El sueldo que tiene que cobrar es: “,SUELDO FIN python HORAS=input(“Ingrese La cantidad de horas “) VALOR=input(“Ingrese el valor por hora: “) SUELDO=HORAS*VALOR print “El sueldo que tiene que cobrar es: “,SUELDO Prueba de Escritorio LEER

SUELDO

ESCRIBIR

HORAS

VALOR

HORAS*VALOR

SUELDO

100

12

100*12=1200

1200

Ejercicios Adicionales 4) Ingresar un numero, luego multiplicarlo por 2 y Mostrar el resultado por pantalla INICIO ESCRIBIR “Ingrese un numero.” LEER N RESULTADO = N * 2 ESCRIBIR “El resultado es:”, RESULTADO FIN Python N =input (“Ingrese un numero.”) RESULTADO = N * 2 print “El resultado es:”, RESULTADO Prueba de Escritorio LEER

RESULTADO

ESCRIBIR

N

N*2

RESULTADO

100

100*2=200

200

Clase 1: -2-

5) Ingresar el sueldo de 4 empleados, para luego Mostrar cual es el total de sueldo a pagar. INICIO ESCRIBIR “Ingrese la 1º sueldo” LEER s1 ESCRIBIR “Ingrese la 2º sueldo” LEER s2 ESCRIBIR “Ingrese la 3º sueldo” LEER s3 ESCRIBIR “Ingrese la 4º sueldo” LEER s4 Total = s1 + s2 + s3 + s4 ESCRIBIR “El total de sueldos a pagar es:”, total FIN Python s1 =input(“Ingrese la 1º sueldo”) s2 =input(“Ingrese la 2º sueldo”) s3 =input(“Ingrese la 3º sueldo”) s4 =input(“Ingrese la 4º sueldo”) Total = s1 + s2 + s3 + s4 input “El total de sueldos a pagar es:”, total Prueba de Escritorio LEER

TOTAL

ESCRIBIR

S1

S2

S3

S4

S1+S2+S3+S4

TOTAL

1200

800

900

1400

1200+800+900+1400=4300

4300

Clase 1: -3-

Related Documents

Clase 01
May 2020 14
Clase 01
November 2019 22
Ejercicios Clase 4.docx
December 2019 20

More Documents from "Profesora Leticia"