-
Notifications
You must be signed in to change notification settings - Fork 0
/
exo3(maj).cpp
53 lines (45 loc) · 1.16 KB
/
exo3(maj).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
/*======================================================
programme élementaire en C++
Auteur: Da Cunha Enzo
Date:../../2022
version:1.0
========================================================*/
// iostream contient la déclaration des fonctions
// d'entrée/sortie que je vais utiliser
#include <iostream> // entete de gestion des E/S
#include <windows.h>
using namespace std; // utilisation de l'espace de nommage
// de la bibliothéque standard
char maj(char caractere);
/*======================================================
Fonction principal
========================================================*/
int main()
{
char c;
SetConsoleOutputCP(1252);
// code endesous
cout << "Entrez un caractere " << endl;
cin >> c;
c = maj(c);
cout << c << endl;
// Attendons qu'on appui sur une touche pour terminer
cin.get();
cin.ignore();
return EXIT_SUCCESS;
}
char maj(char caractere)
{
if (caractere >= 97 && caractere <= 122)
{
return (caractere - 32);
}
else if (caractere >= 65 && caractere <= 90)
{
return(caractere);
}
else
{
return (caractere=0);
}
}