EauDeMort
2021-03-31 15:49:11
Je suis en train d'apprendre les variables, mais j'ai un problème, pourquoi cela ne fonctionne pas ?https://image.noelshack.com/fichiers/2021/13/3/1617198547-jebug.png
Jency16
2021-04-01 16:56:00
l'espace après benjamin
est considéré comme la fin de l'entrée
utilise std::getline
#include <iostream>
#include <string>
int main(int , char *[])
{
std::string str;
std::getline(std::cin, str);
std::cout << "str: \"" << str << "\"" << std::endl;
return 0;
}
toto titi tata
str: "toto titi tata"