convertir en maj avec la fonction toupper - C++ - Programmation
Marsh Posté le 26-03-2005 à 21:09:34
upper.cpp:23: error: no matching function for call to `toupper(
std::basic_string<char, std::char_traits<char>, std::allocator<char> >& )'
/usr/include/ctype.h:119: error: candidates are: int toupper(int)
--> il te dit qu'il ya pas de fonction toupper qui prend en param une string!
man toupper
Marsh Posté le 26-03-2005 à 21:27:52
man toupper
pour qu'il voit a quoi sert la fonction, mais bon la solution n'est pas loin, il suffit de upper tous les caracters de la chaine dans Maj!
Marsh Posté le 26-03-2005 à 21:43:20
http://www.boost.org/doc/html/stri [...] l#id576240
Marsh Posté le 26-03-2005 à 22:07:15
annadivx a écrit : lol... |
ben son prof est un incompetent
Marsh Posté le 27-03-2005 à 09:11:58
allez suis gentil lol
# std::string Maj (std::string & a)
# {
# std::transform(a.begin(), a.end(), a.begin(), toupper);
# return a
# }
la suite devrait marché en ajoutant ctype.h pour toupper
Marsh Posté le 28-03-2005 à 12:56:10
salut
merci pour ton aide rits75, il marche mon programme,
merci encore
Rits75 a écrit : allez suis gentil lol |
Marsh Posté le 26-03-2005 à 20:21:02
bonjour,
je vous poste de message car j'ai un petut souci dans mon code qui me dépasse. je dois faire un code en c++ qui doit affiché en majuscule sur la sortie standard les caractères tapés en entré standard.
voici le code source
et j'obtiens ça comme message de compilation
jaybolo[20:12][f-upper]make re
rm -f upper.o *~
g++ -O2 -Wall -W -Werror -c -o upper.o upper.cpp
upper.cpp: In function `std::string Maj(std::string& )':
upper.cpp:23: error: no matching function for call to `toupper(
std::basic_string<char, std::char_traits<char>, std::allocator<char> >& )'
/usr/include/ctype.h:119: error: candidates are: int toupper(int)
make: *** [upper.o] Error 1
jaybolo[20:13][f-upper]
Je compile grâce à g++ sous une debian.
Si quelqu'un voit où je me suis gourré ce serait coool de me le faire savoir svp.
merci d'avance