Guest User

Untitled

a guest
Nov 24th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. #include "stdafx.h"
  2. #include <iostream>
  3. #include <string>
  4. #include <cstdlib>
  5. #include <cctype>
  6.  
  7. void decrypt (char, char, int);
  8.  
  9.  
  10.  
  11. using namespace std;
  12.  
  13. int main()
  14. {
  15.  
  16. char encoded[] = ":mmZ\dxZmx]Zpgy";
  17. int Key = 1;
  18.  
  19. for (int i=1;i<100;i++) {
  20.  
  21. void decrypt(char encoded[], char decoded[], int Key);
  22.  
  23. Key++;
  24. }
  25.  
  26.  
  27. return 0;
  28.  
  29. }
  30.  
  31. void decrypt(char encoded[], char decoded[], int Key)
  32. {
  33. for (int i=0;i<str.length(encoded[i]); i++)
  34. {
  35.  
  36.  
  37.  
  38.  
  39. }
  40.  
  41.  
  42. }
Add Comment
Please, Sign In to add comment