fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. /* Name of the class has to be "Main" only if the class is public. */
  8. class Ideone
  9. {
  10. public static void main (String[] args) throws java.lang.Exception
  11. {
  12. // your code goes here
  13. }
  14. }
Success #stdin #stdout 0.11s 52616KB
stdin
Traceback (most recent call last):
  File "/data/user/0/ru.iiec.pydroid3/files/accomp_files/iiec_run/iiec_run.py", line 31, in <module>
    start(fakepyfile,mainpyfile)
  File "/data/user/0/ru.iiec.pydroid3/files/accomp_files/iiec_run/iiec_run.py", line 30, in start
    exec(open(mainpyfile).read(),  __main__.__dict__)
  File "<string>", line 1
    def mostrar_menu(): print("1. Sumar") print("2. Restar") print("3. Multiplicar") print("4. Dividir") print("5. Salir") def obtener_numero(mensaje): return float(input(mensaje)) def calcular(opcion, num1, num2): if opcion == 1: return num1 + num2 elif opcion == 2: return num1 - num2 elif opcion == 3: return num1 * num2 elif opcion == 4: if num2 != 0: return num1 / num2 else: print("Error: División por cero") return None else: print("Opción no válida") return None def main(): while True: mostrar_menu() opcion = int(input("Seleccione una opción: ")) if opcion == 5: print("Saliendo de la calculadora...") break num1 = obtener_numero("Ingrese el primer número: ") num2 = obtener_numero("Ingrese el segundo número: ") resultado = calcular(opcion, num1, num2) if resultado is not None: print("El resultado es:", resultado) if __name__ == "__main__": main() ```
                                          ^^^^^
SyntaxError: invalid syntax

[Program finished]
stdout
Standard output is empty