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
~261 People Reached
Favorite Forums
Favorite Tags
c++ x 4
Member Avatar for alysha.recore

Hello everyone! I am in need of some help with a homework assignment. It's basically creating a file indexer using C++. I have 2 separate files that I need to read in: one is a text document and the other is a Skip words key. I am incredibly confused about …

Member Avatar for NathanOliver
0
165
Member Avatar for alysha.recore

Hello everyone! I have a homework assignment that I'm just not understanding...We're tyring to implement 4 total ciphers. I have the Caesar Cipher down: #include <cstring> #include "algorithms.h" void caesarEncrypt( const char plaintext[] , char ciphertext[], int key ) { int idx; for( idx = 0; idx < strlen(plaintext); idx++ …

0
96