Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <string>
- #include <vector>
- #include <algorithm>
- #include <cstdlib>
- using namespace std;
- /**
- * Objectif
- * Retourner le code ASCII le plus grand parmi les caractères contenus dans le mot !
- *
- * Entrée
- * Ligne 1 : le mot
- *
- * Sortie
- * Ligne 1 : le code ASCII le plus grand
- *
- * Contraintes
- * 1 <= longueur(mot) <= 100
- * Le mot ne contient pas d'espace.
- *
- * Exemple
- * Entrée
- * a
- * Sortie
- * 97
- */
- int main()
- {
- string word;
- getline(cin, word);
- sort(word.begin(), word.end()); // Trie le mot par ordre croissant des caractères ASCII
- cout << (int) word[word.length() - 1] << endl; // Affiche le code ASCII du dernier caractère (le plus grand)
- return EXIT_SUCCESS;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement