-
Notifications
You must be signed in to change notification settings - Fork 0
/
lireetdire.cpp
77 lines (69 loc) · 1.91 KB
/
lireetdire.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#include <iostream>
using namespace std;
int separer_chiffre_gauche(int& nombre)
{
int dix(1);
int temp(nombre);
while (temp >= 10) {
dix *= 10;
temp /= 10;
}
nombre %= dix;
return temp;
}
/*****************************************************
* Compléter le code à partir d'ici
*****************************************************/
void ajouter_chiffre_droit(int& nombre, int chiffre)
{
nombre = (nombre * 10) + chiffre;
}
void dire_chiffre(int& nombre, int repetitions_chiffre, int chiffre)
{
ajouter_chiffre_droit(nombre, repetitions_chiffre);
ajouter_chiffre_droit(nombre, chiffre);
}
int lire_et_dire(int nombre_a_traiter) // ex. 11, ou 21, 1221
{
int temp_chiffre;
int rep_chiffre_actuel = 0;
int nombre_output = 0;
while (nombre_a_traiter > 0) {
int chiffre_actuel = separer_chiffre_gauche(nombre_a_traiter);
if (chiffre_actuel == temp_chiffre) {
rep_chiffre_actuel++;
} else {
// le nb a changé !
if (rep_chiffre_actuel > 0) {
dire_chiffre(nombre_output, rep_chiffre_actuel, temp_chiffre);
}
temp_chiffre = chiffre_actuel;
rep_chiffre_actuel = 1;
}
// si on est arrivé à la fin du nombre à traiter, on ajoute la dernière trouvaille
if (nombre_a_traiter == 0) {
dire_chiffre(nombre_output, rep_chiffre_actuel, chiffre_actuel);
}
}
cout << "on sort" << endl;
cout << nombre_output << endl;
return nombre_output;
}
/*******************************************
* Ne rien modifier après cette ligne.
*******************************************/
void repeter_lire_et_dire(int& nombre, int fois)
{
while (fois-- > 0) {
nombre = lire_et_dire(nombre);
}
}
int main()
{
int nombre(1);
int fois(1);
cin >> nombre >> fois;
repeter_lire_et_dire(nombre, fois);
cout << nombre << endl;
return 0;
}