Skip to content

Instantly share code, notes, and snippets.

View manezaf8's full-sized avatar

maneza f8 manezaf8

View GitHub Profile
@manezaf8
manezaf8 / RockPaperScissors.java
Created October 23, 2018 10:37
This is a Rock, Paper, Scissoers game created by Maneza F8 using Java... feel free to copy the code and use it in your project.
package motoVehicle;
import java.util.*;
public class RockPaperScissors {
final static int ROCK = 1, PAPER = 2 , SCISSOR = 3;
public static void main(String[] args)
{
Scanner scan = new Scanner(System.in);