Pergunta de entrevista da empresa Microsoft

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

Resposta da entrevista

Sigiloso

6 de abr. de 2021

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

4