我正在尝试学习C++,无论如何我都在使用if语句。

我编写了一个程序,询问两个用户的全名和年龄(虚构的用户),它询问user1的名称和年龄以及与user2相同,但是以某种方式询问user2的名称却最终询问了user2的年龄

为什么呢?

这是我的代码:

#include <iostream>
#include <string>

using namespace std;

int main()
{
    string usernameone;
    string usernametwo;
    int age1;
    int age2;

    //ask the users their name and age
    cout << "Hi may I know your full name ? : ";
    getline ( cin, usernameone, '\n');
    cout << "\nHello " << usernameone << " May I know now whats your age ? : ";
    cin >> age1;
    cout << "Ok thanks for the information, now may I talk to the other user ? thanks.\n\n";
    cout << "Hello may I know your full name ? : ";
    getline ( cin, usernametwo, '\n');
    cout << "\nHello " << usernametwo << " May I know now whats your age ? : ";
    cin >> age1;

    if(age1 < age2)
    {
        cout << "looks like " << usernameone << " is older than " << usernametwo;
    }
    else
    {
        cout << "ok " << usernametwo << " is older than " << usernameone;
    }

    if(age2 && age1 >= 100)
    {
        cout << "your both lying your age can't be 100 and above";
    }

    cin.ignore();
    cin.get();
    return 0;
}

最佳答案

cin >> age1;
cout << "Ok thanks for the information, now may
         I talk to the other user ? thanks.\n\n";
cout << "Hello may I know your full name ? : ";

'\n'留在输入流中,您将在下一次阅读中阅读它
getline ( cin, usernametwo, '\n');

您可以使用以下命令忽略此字符:
    cin >> age1;
    cout << "Ok thanks for the information, now may
             I talk to the other user ? thanks.\n\n";
    cout << "Hello may I know your full name ? : ";
    cin.ignore();
    getline ( cin, usernametwo, '\n');

10-08 13:47