using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks;

namespace Musterausgeben1__e.und_Schleifen { class Program { static void Main(string[] args) { int i;

        for (i = 0; i < 1; ++i)
        {
            Console.WriteLine(" *******************************************************************************");   
                                     ("********************************************************************");   
        }
        {
            for (i = 0; i < 1; ++i)
                Console.WriteLine(" ***********************************************  ");                                      
        }

        Console.ReadKey();
    }
}

}

...zur Antwort

public class Hangman { private static String [] words =
{"geography", "cat", "yesterday", "java", "truck", "opportunity", "fish", "token", "transportation", "bottom", "apple", "cake", "remote", "pocket", "terminology", "arm", "cranberry", "tool", "caterpillar", "spoon", "watermelon", "laptop", "toe", "toad", "fundamental", "capitol", "garbage", "anticipate", "apple"}; }

public Hangman() { String h; h = "x"; wort = wort.substring(0,5) + h + wort.substring(6,wort.length());
}

...zur Antwort