Ejercicios en PyCharm
"""Ejercicio 17""" #programa_suma_basica import time print"Ingrese un primer valor: " a=int(input("")) print"Ingrese un segundo valor: " b=int(input("")) suma=a+b print"Suma de valores ingresados: " print(suma) time.sleep(5) """Ejercicio 18""" #programa_manejo_matematicas import time from math import * print"Ingrese un primer valor: " x=int(input("")) print"Ingrese un segundo valor: " y=int(input("")) s=log(x+y) print"El resultado es: ",s time.sleep(5) """Ejercicio 19 primera forma de hacerlo""" #encoding:utf-8 edad=10 if edad > 0 and edad < 18: print"Eres un niño" elif edad < 0 : print"no numeros negativos" elif edad >= 18 and edad < 27: print "Eres un joven" elif edad >= 27 and edad < 60: print "E
Comentarios
Publicar un comentario