Files
Exercises_C_Sharp/FurtherExercises/Sonderaufgaben/Exercise_1.cs
2024-07-17 07:20:18 +02:00

27 lines
761 B
C#
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using System.IO;
using System.Collections.Generic;
namespace Exercises_C_Sharp.Sonderaufgaben
{
class Exercise_1
{
//Schreiben Sie ein Spiel, in dem man gegen den Computer Schere, Stein, Papier, Echse, Spock spielen kann. Die Regeln sind wie folgt:
// - Schere schneidet Papier         
// - Papier bedeckt Stein                
// - Stein zerquetscht Echse
// - Echse vergiftet Spock
// - Spock zertrümmert Schere
// - Schere köpft Echse
// - Echse frisst Papier
// - Papier widerlegt Spock
// - Spock verdampft Stein
// - Stein schleift Schere
public static void Start()
{
}
}
}