Назад к задачамПолучайте помощь с лайвкодингом в реальном времени с Sobes Copilot
Intern — Senior
23
Predict the output of a simple C# snippet
Условие задачи
Determine what the program will display when executed.
int a = 1;
int b = a;
b = 2;
Console.WriteLine(a);