using System;
namespace ConsoleApp1
{
class Program
static void Main(string[] args)
double a, b, c;
Console.WriteLine("Введите a:");
a = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("Введите b:");
b = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("Введите c:");
c = Convert.ToDouble(Console.ReadLine());
Console.Write("Результат: {0} , {1}, {2}", (a > 0) ? a * a : a * a * a * a,
(b > 0) ? b * b : b * b * b * b, (c > 0) ? c * c : c * c * c * c);
}
using System;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
double a, b, c;
Console.WriteLine("Введите a:");
a = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("Введите b:");
b = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("Введите c:");
c = Convert.ToDouble(Console.ReadLine());
Console.Write("Результат: {0} , {1}, {2}", (a > 0) ? a * a : a * a * a * a,
(b > 0) ? b * b : b * b * b * b, (c > 0) ? c * c : c * c * c * c);
}
}
}