✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що буде виведено на екран після виконання фрагменту програми
void Nom1( int k, int p)
{
k = -8; p = 4;
if (k > 0) { Console.Write(k+p); }
}
static void Main(string[] args)
{
Nom1(k, p);
Console.ReadLine();
}