我已经使用结构编写了一个员工数据库,我将提供以下凭据
员工姓名sachin mirajkar
员工id abcde12345
员工工资为123456789
对于此输入,只有emplyee id没有显示在屏幕上,请帮助
#include <stdio.h>
struct employees_database {
char name[30],salary[12],empid[11];
};
int main()
{
struct employees_database emp[1];
int i,j;
for(i=0;i<1;i++)
{
printf("Enter name of employee: ");
scanf("%[^\n]s",emp[i].name);
for(j=0;emp[i].name[j];j++)
{
if(!((emp[i].name[j]>'@' && emp[i].name[j]<'[')||(emp[i].name[j]>'`' && emp[i].name[j]<'{')||(emp[i].name[j]==' ')))
goto END;
}
printf("\n Enter employee id:");
scanf("%s",emp[i].empid);
for(j=0;emp[i].empid[j];j++)
{
if(!((emp[i].empid[j]>'@' && emp[i].empid[j]<'[')||(emp[i].empid[j]>'`' && emp[i].empid[j]<'{')||(emp[i].empid[j]>'/' && emp[i].empid[j]<':')))
goto END;
}
printf("\n Enter salary:");
scanf("%s",emp[i].salary);
for(j=0;emp[i].salary[j];j++)
{
if(!(emp[i].salary[j]>'/' && emp[i].salary[j]<':'))
goto END;
}
}
printf("\nEmployee ID \t Employee name \t\t Employee salary\n");
for(i=0;i<1;i++)
printf(" %s \t %s \t\t %s \n",emp[i].empid,emp[i].name,emp[i].salary);
return 0;
if(0)
END: printf("enter valid credentials\n");
}
最佳答案
请检查scanf()函数调用。
改变
scanf("%[^\n]s",emp[i].name);
到
scanf("%s",emp[i].name);
应该有办法
关于c - 为什么我的程序不打印具有以下凭据的Empid?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54290267/