fork download
  1. using System;
  2.  
  3. public class Program {
  4. public static void Main() {
  5. var texto = "carambola";
  6. var adivinha = new String('_', texto.Length);
  7. Console.WriteLine(adivinha);
  8. }
  9. }
  10.  
  11. //https://pt.stackoverflow.com/q/210004/101
Success #stdin #stdout 0.02s 15712KB
stdin
Standard input is empty
stdout
_________