✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Код символу 0 дорівнює 48.
using System ;
class Program
{
static void Main()
{
int a = 12, b = 34;
string s = "Сума ="; s + = "0" + a + b; Console.Write(s);
}
}
(**CharpBase**)