题解 | #2的n次方计算#
2的n次方计算
https://www.nowcoder.com/practice/35a1e8b18658411388bc1672439de1d9
这题不仅仅可以用system中的math.pow方法,也可以使用循环乘,递归等方法来实现
public class Program { public static void Main() { int a = int.Parse(System.Console.ReadLine()); System.Console.WriteLine(System.Math.Pow(2,a)); } }