Pregunta de entrevista de Microsoft

Write a function that receives int n and print 10^n

Respuesta de la entrevista

Anónimo

6 abr 2021

public static void tenToThePowerOf(int n) { if (n>=0) { Console.Write("1"); for (int i=0; i

4