This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Do not copy: | |
//More Advanced Version: | |
//Random Password Generator: | |
#include <iostream> | |
#include <cstdlib> | |
#include <ctime> | |
#include <fstream> | |
using namespace std; | |
void help(); | |
void PASSINTRO(){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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); |