online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code    Language
using System; using System.Collections.Generic; class Solution { static void Main(String[] args) { /* Enter your code here. Read input from STDIN. Print output to STDOUT. Your class should be named Solution */ int n = Int32.Parse(Console.ReadLine()); Dictionary < string, string > phonebook = new Dictionary < string, string > (); for (int i = 0; i < n; i++) { string[] line = Console.ReadLine().Split(' '); phonebook[line[0]] = line[1]; } Check_name(phonebook); } static void Check_name(Dictionary<string,string> phonebook) { string name; while ((name = Console.ReadLine()) != null && name.Length>0) { if (phonebook.ContainsKey(name)) { Console.WriteLine(name + "=" + phonebook[name]); } else { Console.WriteLine("Not found"); } } } }

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