using System; class Program { static void Main() { Console.WriteLine("Введите число:"); double a = Convert.ToDouble(Console.ReadLine()); Console.WriteLine("Введите степень:"); int n = Convert.ToInt32(Console.ReadLine()); double result = 1; int i = 0; while (i < n) { result *= a; i++; } Console.WriteLine($"{a} в степени {n} = {result}"); } }
Или
using System; class Program { static void Main() { Console.WriteLine("Введите число:"); double a = Convert.ToDouble(Console.ReadLine()); Console.WriteLine("Введите степень:"); int n = Convert.ToInt32(Console.ReadLine()); double result = 1; int i = 0; do { result *= a; i++; } while (i < n); Console.WriteLine($"{a} в степени {n} = {result}"); } }
class Program
{
static void Main()
{
Console.WriteLine("Введите число:");
double a = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("Введите степень:");
int n = Convert.ToInt32(Console.ReadLine());
double result = 1;
int i = 0;
while (i < n)
{
result *= a;
i++;
}
Console.WriteLine($"{a} в степени {n} = {result}");
}
}
Или
using System;class Program
{
static void Main()
{
Console.WriteLine("Введите число:");
double a = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("Введите степень:");
int n = Convert.ToInt32(Console.ReadLine());
double result = 1;
int i = 0;
do
{
result *= a;
i++;
} while (i < n);
Console.WriteLine($"{a} в степени {n} = {result}");
}
}