Skip to content

Instantly share code, notes, and snippets.

View abdulrahmanabdulazeez's full-sized avatar
🤠
I am DrCode.

AnonabdulJ abdulrahmanabdulazeez

🤠
I am DrCode.
  • /-\n0n`/ house, last floor!
View GitHub Profile
@4anonz
4anonz / GuessingGame.java
Created August 4, 2021 00:30
Java Number Guessing Game With Random Number Generator
// Beginner Simple Number Guessing Game using random number generator
import java.util.Random;
import java.util.Scanner;
public class GuessingGame {
public static void main(String[] args) {
Random random = new Random();
Scanner inputs = new Scanner(System.in);
//Do not copy:
//More Advanced Version:
//Random Password Generator:
#include <iostream>
#include <cstdlib>
#include <ctime>
#include <fstream>
using namespace std;
void help();
void PASSINTRO(){