Skip to content

Instantly share code, notes, and snippets.

@zeldani
Created February 27, 2014 14:43
Show Gist options
  • Save zeldani/9251414 to your computer and use it in GitHub Desktop.
Save zeldani/9251414 to your computer and use it in GitHub Desktop.
Calculadora simples de ohms
#!/usr/bin/env python
import math
import sys
print "_________________________________________________"
print "Calculadora Simples de OHMs"
print "Criado por: zeldani.blogspot.com\n"
print " (___()'`; "
print " /, /` "
print " \\''--\\ Say hello to Tiby!\n "
print " 1. Digite v para calcular a voltagem."
print " 2. Digite c para calcular a corrente."
print " 3. Digite r para calcular a resistencia."
print " 4. Digite s para sair do programa.\n"
print "_________________________________________________\n"
opcao = raw_input("Digite a sua opcao: ")
if opcao == "v": #voltagem
corrente = float(raw_input("\nInforme o valor da corrente em amperes: "))
resistencia = float(raw_input("Informe o valor da resistencia em ohms: "))
voltagem = float(corrente * resistencia)
print "\nA voltagem eh %f volts.\n\n" % voltagem
if opcao =="c": #corrente
voltagem = float(raw_input("\nInforme o valor da voltagem em volts: "))
resistencia = float(raw_input("Informe o valor da resistencia em ohms: "))
corrente = float(voltagem / resistencia)
print "\nO valor da corrente eh de %f amperes.\n\n" % corrente
if opcao =="r": #resistencia
voltagem = float(raw_input("\nInforme o valor da voltagem em volts: "))
corrente = float(raw_input("Informe o valor da corrente em amperes: "))
resistencia = float(voltagem / corrente)
print "\nO valor da resistencia eh de %f ohms.\n\n" % resistencia
if opcao =="s":
print "Flw!!!"
sys.exit()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment