Deutsch
Germany.ruФорумы → Архив Досок→ Программирование

C++ Решить задачку?

17.11.08 11:02
C++ Решить задачку?
 
dzmitriy22db постоялец
dzmitriy22db
#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;
}
 

Перейти на