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. if (math.tan(x)-2*math.sin(x))<0:
  17. print ("ERROR: the negative value in square roоt\n");
  18. else:
  19. a=math.sqrt(math.tan(x)-2*math.sin(x));
  20. print ("Result is a=",a,"\n");
  21. if x<=0:
  22. print("ERROR: log10(x) is not defined for x ≤ 0\n");
  23. else:
  24. b=L**(2*x)+K*math.log10(x);
  25. print("Result is b=",b,"\n");
  26. if a>b:
  27. y=3*a+math.exp(x);
  28. print("Result is y=",y,"\n");
  29. if a<=b:
  30. y=3*b+math.exp(-1);
  31. print("Result is y=",y,"\n");
Success #stdin #stdout 0.11s 14356KB
stdin
2
stdout
Please enter number of x(1,2,3)
x= 5.249
Result is a= 0.19428345226759935 

Result is b= 102052.83194092828 

Result is y= 306158.863702226