Jump to content
Fórum Script Brasil
  • 0

Bug no C++?


Oakenshield

Question

Olá amigos,

estava fazendo um aplicativo e percebi uma coisa estranha. Localizei o erro e vou colocar um sample:

#include <iostream>
using namespace std;
#include <cstring>

int _tmain(int argc, _TCHAR* argv[])
{
    int n;
    char name[20];

    cout << "Enter n: ";
    cin >> n;
    cout << "Enter name: ";
    cin.getline(name, 19);

    system("PAUSE");
    return 0;
}
Não sei o motivo, mas esse codigo não funciona, pois o cin.getline não dá sinal. Mas a seguinte versão funciona (uma simples inversão da ordem):
#include <iostream>
using namespace std;
#include <cstring>

int _tmain(int argc, _TCHAR* argv[])
{
    int n;
    char name[20];

    
    cout << "Enter name: ";
    cin.getline(name, 19);
    cout << "Enter n: ";
    cin >> n;

    system("PAUSE");
    return 0;
}

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0
Neste tópico, tivemos acho que o mesmo problema, só que com o scanf(), talvez seja a mesma coisa: http://scriptbrasil.com.br/forum/index.php?showtopic=149279

Tente o fflush(stdin); entre cada cin, como recomendado no último post.

Para Windows o fflush(stdin) funciona bem, se e o amigo estiver utilizando Linux é melhor ele utilizar a __fpurge(stdin).

PS: Para utilizar o __fpurge() voce deve incluir a biblioteca <stdio_ext.h>

Tem um site que eu utilizo muito como referencia para tirar duvidas de funções, além dele ter o detalhamento e exemplos de praticamente todas as funções de C++ é o http://www.cplusplus.com/

Espero ter ajudado

Edited by Ruyfreis
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...