✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Дослідити програму. Написати що буде виведено на екран.
class Program{static void Main(string[] args)
{ Console.WriteLine( Test('a', 'a') );
}
static char Test(char p1, char p2)
{ if(p1 == p2)
return ‘B’;
else
return ‘L’;
}
}
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!