Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
1
Downvoting Members
2
1 Commented Post
0 Endorsements
~1K People Reached
Favorite Forums
Favorite Tags
c++ x 2

2 Posted Topics

Member Avatar for kisseric

#include <iostream> using namespace std; float sub (float a, float b) { float dif; dif=a - b; return dif; } float addition (float c, float d) { float sum; sum=c+d; return sum; } float divi (float e, float f) { float quo; quo = e/f; return quo; } float multi …

Member Avatar for manujkathuria
-4
1K
Member Avatar for jase728

I need help. How do you encrypt multiple lines of a text file? /********************* *Made by Jase Inc * *Made in 10/22/2008 * *Boolean Cryptography* *Using ^ operator * *********************/ #include <iostream> #include <fstream> #include <string> using namespace std; int main () { string line; ifstream myfile ("text.txt"); char key[65]="jaf#$%skl%#ajlf^%dlkfhasjlk@#dsgsfsfrtw"; …

Member Avatar for dumparun
0
164

The End.