TOMASZRYBKA2ON TOMASZRYBKA2ON Informatyka Rozwiązane Zmodyfikujcie poniższy kod, dodając funkcję dekodującą zakodowany tekst. -------------------------------------------------------------------------------------------------------------- #include using namespace std; string szyfrowanie(string tekst, int przesuniecie[]){ int skok = 0; for(int i=0; i tekst[i] = tekst[i] + przesuniecie[skok]; skok++; if(skok==20) skok = 0; } return tekst; } int main() { int klucz[] = {12,13,5,3,4,6,12,19,11,10,9,8,3,7,1,14,12,17,6,2}; string tekst; getline(cin, tekst); cout << tekst << endl; string tekst_szyfr = szyfrowanie(tekst, klucz); cout << tekst_szyfr << endl; return 0; }