Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~1K People Reached
Favorite Forums
Favorite Tags
c++ x 6
Member Avatar for Jaxzen

My program is supposed to essentially be something like Wheel of Fortune. As long as the user guesses letters that aren't in the word, the program behaves properly. But, when the user inputs a letter that IS in the word, the program stops and doesn't continue at all. [code] #include …

Member Avatar for Lerner
0
169
Member Avatar for Jaxzen

I need to turn the characters in a string that's generated from a data file into *'s and make it visible to the user. [code] #include <iostream> #include <fstream> #include <string> #include <cstdlib> #include <ctime> using namespace std; int main() { int numph; //First number in .dat file saying how …

Member Avatar for WaltP
0
142
Member Avatar for Jaxzen

My code is supposed to take numbers from an .txt file, assign them variables, print out the numbers and THEN if the number is less than 25, add them up according to parity. So, if the list of numbers is 1,2,3,4,5 It'll output: 1 2 3 4 5 Sum of …

Member Avatar for Lerner
0
926
Member Avatar for Jaxzen

So, my assignment is to write a program that puts a password input from the user through various tests and output its level of security. I've not had much training in this as my teacher doesn't really help much, and I'm supposed to do this over spring break. [code] #include …

Member Avatar for vmanes
0
150