Jump to content
Fórum Script Brasil
  • 0

Problemas com string


Goth

Question

Bom galera, sou novo nesse assunto, estou estudando em uma apostila que baixei esses dias de linguagem em C ++

nela contem uns exercícios de string, mas não sei se estou fazendo errado ou o que pois ele não reconhece :/

#include <iostream.h>
int main()
{
    string s1 = "Agua mole ";
    string s2 = "em pedra dura ";
    string s3 = "tanto bate ";
    string s4 = "ate que fura";
    cout << s1 + s2 +
            s3 + s4 + "!!!\n\n";
    getchar();
    return 0;
}

se eu tiver fazendo errado, mau ainda sou iniciante em c++

mas eu fiz certo como ta na apostila e não sei porque não deu

alguém pode me explicar

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

acho que faltou o #include <string> e std::

#include <iostream>
#include <string>

int main()
{
    std::string s1 = "Agua mole ";
    std::string s2 = "em pedra dura ";
    std::string s3 = "tanto bate ";
    std::string s4 = "ate que fura";

    std::cout << s1 + s2 + s3 + s4 + "!!!\n\n";

    getchar();
    return 0;
}

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...