Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
50% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~145 People Reached
Favorite Forums
Favorite Tags
c++ x 4
Member Avatar for Kl2eativ

I need to add sound to this code but I cannot figure it out! Help!! [CODE]#include <iostream> #include <cstring> #include <cctype> using namespace std; int main() { int i, j; int iL; char alph[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"; char *morse[] = { ".-" , "-..." , "-.-." , "-.." , "." , …

0
40
Member Avatar for Kl2eativ

Well let me start by showing off my source. [code]//This is a game called "The Guessing Game" #include <iostream> #include <cstdlib> #include <ctime> using namespace std; int main() { int number; unsigned seed = time(0); srand(seed); seed = 1 + rand() % 100; cout << "Please try to guess a …

Member Avatar for siddhant3s
1
105