fork download
  1. #This is my PYTHON program
  2. import math;
  3. K=2;
  4. L=3;
  5. x=y=a=b=float();
  6. n=int();
  7. print("Please enter number of x(1,2,3)");
  8. n=int(input());
  9. switcher={
  10. 1: -0.346,
  11. 2: 5.249,
  12. 3: 0.219
  13. }
  14. x = switcher.get(n,"Invalid number")
  15. print("x=",x)
  16. a=math.sqrt(math.tan(x)-2*math.sin(x));
  17. print("Result is a=",a,"\n");
  18. b=L**(2*x)+K*math.log10(x);
  19. print("Result is b=",b,"\n");
  20. if a>b:
  21. y=3*a+math.exp(x);
  22. if a<=b:
  23. y=3*b+math.exp(-1);
  24. print ("Result is Y=",y,"\n");
  25.  
Runtime error #stdin #stdout #stderr 0.75s 37352KB
stdin
3
stdout
Please enter number of x(1,2,3)
x= 0.219
stderr
Traceback (most recent call last):
  File "./prog.py", line 16, in <module>
ValueError: math domain error