diff options
| author | Santo Cariotti <sancn@live.com> | 2017-05-18 17:25:46 +0200 | 
|---|---|---|
| committer | Santo Cariotti <sancn@live.com> | 2017-05-18 17:25:46 +0200 | 
| commit | 9d7fe660fae020bfe5650cd12890c19680f2ef55 (patch) | |
| tree | b123600b2ea4d2d2d2559dbd0655d4fab3c3ded8 /cpp/crittografia.cc | |
| parent | f17ed4a016316a065375bce35c5588ae76a25948 (diff) | |
deleted some file
Diffstat (limited to 'cpp/crittografia.cc')
| -rw-r--r-- | cpp/crittografia.cc | 89 | 
1 files changed, 0 insertions, 89 deletions
| diff --git a/cpp/crittografia.cc b/cpp/crittografia.cc deleted file mode 100644 index d448b86..0000000 --- a/cpp/crittografia.cc +++ /dev/null @@ -1,89 +0,0 @@ -#include <iostream> -#include <string> -#include <sstream> -#include <fstream> -#include <cstring> - -using namespace std; - -void converti(char *str, int size); -void vocalic(char *str, int size); - -char consonantiMin[] = {'b','c','d','f','g','h','j','k','l','m','n','p','q','r','s','t','v','w','x','z'}; -char consonantiMax[] = {'B','C','D','F','G','H','J','K','L','M','N','P','Q','R','S','T','V','W','X','Z'}; - -int main() -{ -	ifstream in; -	ofstream out; -	 -	in.open("input.txt"); -	out.open("output.txt"); -	 -	int N; -	string ca; -	 -	getline(in, ca); -	istringstream(ca) >> N; -	 -	for(int i = 0; i < N; i++){ -		getline(in, ca); -		char *c = new char[ca.length() + 1]; -		strcpy(c, ca.c_str()); -		converti(c, ca.length() + 1); -		out << c << endl; -		delete[] c; -	} -	 -	in.close(); -	out.close(); -	 -	return 0; -} - -void vocalic(char *str, int i) -{ -	if(str[i] == 'a') str[i] = 'e'; -	else if(str[i] == 'e') str[i] = 'i'; -	else if(str[i] == 'i') str[i] = 'o'; -	else if(str[i] == 'o') str[i] = 'u'; -	else if(str[i] == 'u') str[i] = 'y'; -	else if(str[i] == 'y') str[i] = 'a'; -	else if(str[i] == 'A') str[i] = 'E'; -	else if(str[i] == 'E') str[i] = 'I'; -	else if(str[i] == 'I') str[i] = 'O'; -	else if(str[i] == 'O') str[i] = 'U'; -	else if(str[i] == 'U') str[i] = 'Y'; -	else if(str[i] == 'Y') str[i] = 'A'; -	else if(str[i] == 'z') str[i] = 'b'; -	else if(str[i] == 'Z') str[i] = 'B'; -	else if(str[i] == '0') str[i] = '1'; -	else if(str[i] == '1') str[i] = '2'; -	else if(str[i] == '2') str[i] = '3'; -	else if(str[i] == '3') str[i] = '4'; -	else if(str[i] == '4') str[i] = '5'; -	else if(str[i] == '5') str[i] = '6'; -	else if(str[i] == '6') str[i] = '7'; -	else if(str[i] == '7') str[i] = '8'; -	else if(str[i] == '8') str[i] = '9'; -	else if(str[i] == '9') str[i] = '0'; -} - -void converti(char *str, int size) -{ -	bool cpres = false; -	for(int i = 0; i < size-1; i++){ -		int s=1; -		vocalic(str,i); -		for(unsigned int j = 0; j < sizeof consonantiMin; j++){ -			if(str[i] == consonantiMin[j] || str[i] == consonantiMax[j]){ -				cpres = true; -				if(str[i]+1 == 'A' || str[i]+1 == 'E' || str[i]+1 == 'I' || str[i]+1 == 'O' || str[i]+1 == 'U' || str[i]+1 == 'Y' || -					str[i]+1 == 'a' || str[i]+1 == 'e' || str[i]+1 == 'i' || str[i]+1 == 'o' || str[i]+1 == 'u' || str[i]+1 == 'y') s = 2; -				else s = 1; -			} -		} -		if(cpres == true) str[i]+=s; -		cpres = false; -	} -} | 
