using System;
class My
{
static void Main()
{
int a,b=1;
int n;
Console.WriteLine("请输入所要求这个数的次方数:");
n=int.Parse(Console.ReadLine());//n是次方
Console.WriteLine("请输入所要计算的这个数:");
a=int.Parse(Console.ReadLine());//a是那个数
for(int i=1;i<=n;i++)
{
b=b*a;
}
Console.WriteLine(a+"的"+n+"次方是:"+b);
}
}
<iframe name="alimamaifrm" frameborder="0" marginheight="0" marginwidth="0" border="0" scrolling="no" width="300" height="170" src="/go/app/tbk_app/chongzhi_300_170.php?pid=mm_28854300_2441872_11377541&page=chongzhi_300_170.php&size_w=300&size_h=170&stru_phone=1&stru_game=1&stru_travel=1" ></iframe>