Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

Rock Paper Scissors Game

A C# Windows Forms application that lets the user play the classic game of Rock, Paper, Scissors against the computer. The program generates a random choice for the computer and compares it to the user's selection to determine the winner.

Features

  • Random Computer Choice: The computer randomly selects between Rock, Paper, or Scissors.
  • User Interaction: Users can select Rock, Paper, or Scissors by clicking corresponding images.
  • Game Logic:
    • The game determines the winner based on the classic rules:
      • Rock beats Scissors
      • Scissors beats Paper
      • Paper beats Rock
    • The game displays the results (computer's choice, user's choice, and the winner).
  • User-Friendly Interface: Clickable images for Rock, Paper, and Scissors for easy interaction.

Technologies

  • C#: Core programming language.
  • Windows Forms: Used to build the graphical user interface.
  • .NET Framework: Platform used to develop and run the application.

How to Run

  1. Open the solution file (rockPaperScissors.sln) in Visual Studio.
  2. Build and run the project.

About This Project

This game was developed as part of a Chapter 10 assignment for my programming class. The folder name Drawdy_chapter_10 reflects the required naming convention for class submissions.