跳过我输入用户名的输出

时间:2018-05-15 03:46:38

标签: c

我需要创建一个日记/计划员,我可以在其中输入用户名和密码,并设置登录名和帐户(如果您还没有)。我需要稍后才能使用它登录并访问我的日记。在那里我可以放入条目并保存它。因此,当我退出程序并再次启动程序时,一旦我登录,我就可以再次访问计划程序。

所以我的问题是,为了设置我的帐户,我需要允许用户输入用户名和密码,但是当我启动程序时,它会跳过我可以输入用户名的部分并直接进入密码。代码:

#include <stdio.h>
#include <stdlib.h>
#define SIZE 1000

void signUp (char username [SIZE], char password [SIZE], char name [SIZE], int age) {
    printf("Sign Up Procedure: \n");
    printf("\nPlease enter your username: ");
    gets(username);
    printf("\nPlease enter a password: ");
    gets(password);
    printf("\nEnter your full name: ");
    gets(name);
    printf("\nEnter your age: ");
    scanf("%d", &age);

    printf("Username: %s, Password: %s, Full Name: %s, Age: %d", username, password, name, age);
}

void logIn(char username [SIZE], char password [SIZE]) {

}

int main() {
    printf("1. Log In\n");  // Enter 1 for logging in
    printf("2. Sign Up\n"); // Enter 2 for signing up
    int choice;
    scanf("%d", &choice);

    char username [SIZE];
    char password [SIZE];
    char name [SIZE];
    int age;

    int keepGoing = 0;

    while (keepGoing == 0){
        switch (choice) {
        case (1):
            logIn (username, password);
            keepGoing = 1;
            break;
        case (2):
            signUp (username, password, name, age);
            keepGoing = 1;
            break;
        default:
            printf("Please enter a choice from the given options");
            keepGoing = 0;
            break;
        }
    }

    FILE * pfile;

    pfile = fopen("Planner.txt", "w");

    fputs("Planner", pfile);

    fclose(pfile);

    return 0;
}

1 个答案:

答案 0 :(得分:1)

您的第一个scanf("%d", &choice);

gets(username);

正在读取整数,因此它将换行符留在输入缓冲区中。

然后当您尝试获取用户名时:

username

它获取该换行符并将其分配给C。我建议阅读scanf()输入以及为什么C可能是危险和棘手的,特别是在混合整数和字符串输入以及与其他{{1}}输入函数一起使用时。