Login
C++ Решить задачку?
388 просмотров
Перейти к просмотру всей ветки
#include <iostream>
#include <string>
using namespace std;
string encrypt(string text, string key)
{
string result;
// Here something is missing...
return result;
}
/** This is the entry point of the program. */
int main(int argc, char* argv[])
{
string text = "Dies ist irgendein Text.";
string key = "irgendein Passwort";
// Here something is missing...
return 0;
}
#include <string>
using namespace std;
string encrypt(string text, string key)
{
string result;
// Here something is missing...
return result;
}
/** This is the entry point of the program. */
int main(int argc, char* argv[])
{
string text = "Dies ist irgendein Text.";
string key = "irgendein Passwort";
// Here something is missing...
return 0;
}