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
~260 People Reached
Favorite Forums
Favorite Tags
c++ x 4
Member Avatar for tm5054

[code] #include <string> #include <iostream> #include <cmath> using namespace std; const int findMe (string n[MAXIMUM = 100], double scor[MAXIMUM = 100],) { } int main () { string names[MAXIMUM]; double score[MAXIMUM]; for (int x = 0; x < MAXIMUM; x++) { cout << "Please enter a student name (Enter a …

Member Avatar for Lerner
0
125
Member Avatar for tm5054

Using RSA, I need to use the following values to encrypt the word “hello”: p=3, q=11, e=9, d=9. And then apply the decryption algorithm to the encrypted version to recover the original plaintext. For the message, use h=8, e=5, l=12, o=15. I have no idea and have been struggling for …

0
38
Member Avatar for tm5054

[code] #include <string> #include <iostream> using namespace std; int main() { int loanAmount[10]; int numMonths[10]; string keepGoing; int counter = 0; do { cout << "Please enter a loan amount: "; cin >> loanAmount[counter]; cout << "Please enter the number of months: "; cin >> numMonths[counter]; counter++; cout << endl …

Member Avatar for Ancient Dragon
0
97