online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
import random ls = [] ls2 = [] for i in range(6): ls.append(random.randint(1, 45)) print("Húzott számok:", *ls) if 13 in ls: print("Kihúzták a 13-as számot.") else: print("A 13-as számot nem húzták ki.") if max(ls) > 40: print("Van 40-nél nagyobb szám a listában.") else: print("Nincs 40-nél nagyobb szám a listában.") print(f"A húzott számok összege: {sum(ls)}") print(f"A legkisebb szám: {min(ls)}") for i in range(len(ls)): if ls[i] % 5 == 0: ls2.append(ls[i]) if len(ls2) > 0: print("5-tel osztható nyerőszámok:", *ls2) else: print("Nincs 5-tel osztahtó szám a listában.")

Compiling Program...

Command line arguments:
Standard Input: Interactive Console Text
×

                

                

Program is not being debugged. Click "Debug" button to start program in debug mode.

#FunctionFile:Line
VariableValue
RegisterValue
ExpressionValue