Je peux avoir un logiciel de piratage de mail?
from Hackademics : Forum de hacking hackers white hat cours de securite informatique, apprendre langage python, tutoriels de reverse engineering http://ift.tt/2agZZAV
via IFTTT
char get_crypt_key(char letter_message, char letter_key);
def mult_2(obj):
return obj * 2
>>> def mult_2(obj):
... return obj * 2
...
>>> mult_2(5)
10
>>> mult_2(5.7)
11.4
>>> mult_2("ab")
'abab'
>>>
#include <iostream>
using namespace std;
int mult_2(int obj);
double mult_2(double obj);
string mult_2(string obj);
int main(){
int a = 5;
double b = 5.7;
string c = "ab";
cout << mult_2(a) << endl;
cout << mult_2(b) << endl;
cout << mult_2(c) << endl;
return 0;
}
int mult_2(int obj) { return obj * 2; }
double mult_2(double obj) { return obj * 2; }
int mult_2(int obj){
return obj * 2
}
string mult_2(string obj) { return obj * 2; }
string mult_2(string obj) { return obj + obj; }
#include <iostream>
using namespace std;
int mult_2(int obj);
double mult_2(double obj);
string mult_2(string obj);
int main(){
int a = 5;
double b = 5.7;
string c = "ab";
cout << mult_2(a) << endl;
cout << mult_2(b) << endl;
cout << mult_2(c) << endl;
return 0;
}
int mult_2(int obj){ return obj * 2; }
double mult_2(double obj) { return obj * 2; }
string mult_2(string obj) { return obj + obj; }
int mult_2(int obj_1, int obj_2){ return obj_1 + obj_2; }
cout << mult_2(a, b) << endl;
while (1){
// suite de mon code
}
while (true){
// suite de mon code
}
while (true){
// suite de mon code
if (condition){
break; // interruption de ma boucle infinie
}
}
string line;
getline(cin, line); // On demande à l'utilisateur une chaîne de caractères
if (line.empty()){
// Afficher moyenne
// interruption de la boucle
}
#include <string>
note = stod(line);
try{
// Utilisation de stod
}
catch (const invalid_argument & ia){
// Affichage de la moyenne
// On interrompt la boucle
}
#include <stdexcept>
void displayMean(vector<double> notes)
if (notes.size() == 0){
// "Pas de notes enregistrées"
}
#include <iostream>
#include <vector>
#include <string>
#include <stdexcept>
using namespace std;
void displayMean(vector<double> notes);
int main()
{
// déclaration de variables
while (true){
// demande utilisateur avec getline
// Si l'utilisateur entre rien ?
try{
// Essai conversion string -> double
}
catch (const invalid_argument & ia){
// Essai n'est pas concluant, on fait quoi ?
}
// Ajout de la note dans le tableau
}
return 0;
}
void displayMean(vector<double> notes){
// vos variables
// Si notes est vide ?
// Sinon calculer moyenne et l'afficher
}
tri_à_bulles(Tableau T)
pour i allant de taille de T - 1 à 1
pour j allant de 0 à i - 1
si T[j+1] < T[j]
échanger(T[j+1], T[j])
#include <iostream>
using namespace std;
void echanger(int a, int b);
int main(){
int x=12, y=8;
echanger(x, y);
cout << "x=" << x << " et y=" << y << endl;
return 0;
}
void echanger(int a, int b){
int temp = b;
b = a;
a = b;
}
x=12 et y=8
void echanger(int *a, int *b){
int temp = *b;
*b = *a;
*a = temp;
}
#include <iostream>
using namespace std;
void echanger(int *a, int *b);
int main(){
int x=12, y=8;
echanger(&x, &y);
cout << "x=" << x << " et y=" << y << endl;
return 0;
}
x=8 et y=12
void echanger(int &a, int &b){
int temp = b;
b = a;
a = temp;
}
#include <iostream>
using namespace std;
void echanger(int &a, int &b);
int main(){
int x=12, y=8;
echanger(x, y);
cout << "x=" << x << " et y=" << y << endl;
return 0;
}
x=8 et y=12
void Tri_bulles(vector<int> &T);
#include <iostream>
#include <vector>
using namespace std;
void Tri_bulles(vector<int> &T);
void echanger(int &a, int &b);
int main(){
vector<int> v;
v.push_back(5); // insertion de la valeur 5 dans le tableau.
v.push_back(3);
v.push_back(9);
v.push_back(1);
v.push_back(12);
v.push_back(0);
Tri_bulles(v); // le tableau est modifié
for (int i=0; i<(int)v.size(); i++)
cout << v.at(i) << endl;
return 0;
}
void Tri_bulles(vector<int> &T){
// à compléter
}
void echanger(int &a, int &b){
int temp = b;
b = a;
a = temp;
}
Somme = 0
Compteur // Nombre de moyennes ajoutées
Tant qu'il y a des moyennes à entrer
Demander la matière
Demander la moyenne
Somme = Somme + moyenne
Moyenne = Somme / Compteur
Afficher Moyenne
Afficher ordre croissant les moyennes
pair <string, double> matiere;
cout << matiere.first << ": " << matiere.second << endl;
#include <vector>
vector<pair<string, double>> v;
vector<double> v;
double moyenne[] = {12.5, 5.5, 9};
vector<double> v (moyenne, moyenne+sizeof(moyenne)/sizeof(double));
vector<double> v;
v.push_back(5.5); // ajout de la valeur 5.5 dans le tableau v
v.push_back(15.0);
vector<double> v;
v.push_back(5.5);
v.push_back(15.0);
for (int i=0; i!=(int)v.size(); i++)
cout << v.at(i) << endl;
#include <algorithm>
bool functionSorting(double i, double j){
return i < j;
}
sort(v.begin(), v.end(), functionSorting);