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
| package network; | |
| public class LocalAreaNetwork extends Network | |
| { | |
| public static String whatAmI = "I am a LAN"; | |
| public static int numCreated; | |
| public int numNodes; | |
| public char firstLetter = 'L'; |
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
| #include <stdio.h> | |
| #include <unistd.h> | |
| #include <stdlib.h> | |
| #include <pthread.h> | |
| #define N 50 | |
| #define M 1000 | |
| int marbles = M; | |
| int scores[N]; |
OlderNewer