online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code    Language
using System; class HelloLoop { static void Main() { string line = new String('-', 20); int frpa; do { Console.Write("\n{0}\nPodaj liczbę od 0-11: ", line); if (!int.TryParse(Console.ReadLine(), out frpa)) Console.WriteLine("Podaj liczbę sprobuj jeszcze raz"); else if (frpa < 0) Console.WriteLine("Podałeś za małą liczbę sprobuj jeszcze raz"); else if (frpa > 11) Console.WriteLine("Podałeś za dużą liczbę sprobuj jeszcze raz"); else // (frpa >= 0 && frpa <= 11) break; } while (true); Console.Clear(); Console.WriteLine($"\nTwoja liczba: {frpa}"); frpa++; } }

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