码迷,mamicode.com
首页 > 其他好文 > 详细

求次幂的简便方法(网上找的,仅自用,非原创)

时间:2018-04-07 16:15:32      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:static   输入   网上   adl   mat   oid   方法   math   sleep   

using System;
class My
{
static void Main()
{
Pow r=new Pow ();
System.Threading .Thread.Sleep (10000);
}
}
class Pow
{
public Pow()
{
Console.WriteLine("请输入你要求幂的数:");
int x=int.Parse (Console.ReadLine());
Console.WriteLine ("数的幂是:");
int y=int.Parse (Console.ReadLine ());
int p=(int)Math.Pow (x,y);
Console.WriteLine ("数"+x+"的"+y+"次方是"+p);

}
}

求次幂的简便方法(网上找的,仅自用,非原创)

标签:static   输入   网上   adl   mat   oid   方法   math   sleep   

原文地址:https://www.cnblogs.com/hsyv123ve/p/8733354.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!