online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code    Language
import java.util.Arrays; import java.util.Scanner; public class Main { public static void main(String[] args) { int length = 10; int numbers[] = new int[length]; System.out.println("Podaj " + length + " liczb"); for (int i=0; i<length; i++) // Pobranie 10 liczb od użytkownika i dodanie ich do tablicy numbers[i] = new Scanner(System.in).nextInt(); System.out.println("\nWprowadzone liczby podzielne przez 3"); for (int i=0; i<length; i++) // liczby które są podzielne przez 3 z pominięciem zera if (numbers[i] % 3 == 0 && numbers[i] != 0) System.out.println(numbers[i]); } }

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