ENCRYPTION? How?

Write a program that encrypts the number supplied by the userr by 2 steps


sample output: 36289
Encrypted: 58401

IT SUCKS
Maybe you should search around the internet a bit before you go posting in this forum.
http://www.cplusplus.com/forum/articles/38516/
Can someone solve it?
closed account (48T7M4Gy)
1
2
3
4
5
6
7
8
9
10
11
#include <iostream>

int main()
{
  std::string input;
  std::cout << "Type here what want encrypted: ";
  std::cin >> input;
  std::cout << "Encrypted: 58401\n\n IT SUCKS";
  
  return 0;
}
Last edited on
Lol? HAHAHA!
Can someone solve it?

If you seriously can not be bothered reading a well written article on encryption, why are you even here? No one is going to help you if you haven't put in the effort.
Topic archived. No new replies allowed.