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
/* | |
* This is the Client aspect of the Serv/Client messaging | |
* author Angel Rojas | |
* ChatClient.java | |
*/ | |
package chatclient; // The Class is chatclient.ChatClient | |
import java.net.*; // THIS HAD TO GO UNDER 'package chatclient;' for some reason. | |
import java.io.*; |
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
/* | |
* This is the Server aspect of the Serv/Client messaging | |
* author Angel Rojas | |
* ChatServer.java | |
*/ | |
package chatserver; // The Class is chatserver.ChatServer | |
import java.net.*; // THIS HAD TO GO UNDER 'package server;' | |
// for some reason. | |
import java.io.*; |
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
/* | |
* This program prints the seasons | |
* | |
* @author Angel Rojas | |
* Course: COMP B11 | |
* Created: Sep 25, 2014 | |
* Source File: Seasons.java | |
*/ | |
import java.util.Scanner; |
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
/* | |
* This script is about the 99 Bottles of Beer on the wall song. | |
* | |
* Author: Angel Rojas | |
* Created on: Sept 09, 2015 | |
* Source file: BeerSong.cpp | |
*/ | |
#include <iostream> | |
#include <windows.h> // allows us to 'Delay' our output using milliseconds! |
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
/* | |
* This script generates a simple, but nice (sorta) Bingo Card! | |
* | |
* Author: Angel Rojas | |
* Created on: Aug 20, 2015 | |
* Source file: BingoCard.cpp | |
*/ | |
#include <cstdlib> | |
#include <iostream> |
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
/* | |
* ConcStrings.cpp | |
* | |
* Created on: Apr 30, 2015 | |
* Author: Angel Rojas | |
*/ | |
#include <iostream> | |
#include <string> | |
using namespace std; | |
int main() |