LLLagrange 2021-03-11 13:33 采纳率: 100%
浏览 27
已采纳

C语言:这是在我输入之前存入数据了吗?

 求大神帮忙看一下,我输入在输入sex和job之前,都会先跳过一次输入,然后显示输入错误。。。。

#include <stdio.h>
int main()
{
	struct 
	{
		int num;
		char name[10];
		char sex;
		char job;
		union
		{
			int banji;
			char position[10];
		}category;
	}person[2];
	int i;
	for (i = 0; i < 2; i++)
	{
		printf("Please input num:");
		scanf_s("%d", &person[i].num);
		printf("Please input name:");
		scanf_s("%s", person[i].name,10);
		printf("Please select sex:");
		scanf_s("%c", &person[i].sex);
        while ((person[i].sex != 'f') && (person[i].sex != 'm'))
		{
			printf("Sex input error!\n");
			printf("Please select sex again:");
			scanf_s("%c", &person[i].sex);
		}
		printf("Please select job:");
		scanf_s("%c", &person[i].job);
		while ((person[i].job != 's') && (person[i].job != 't'))
		{
			printf("Job input error!\n");
			printf("Please select job again:");
			scanf_s("%c", &person[i].job);
		}
		if (person[i].job == 's')
		{
			printf("Please input class:");
			scanf_s("%d", &person[i].category.banji);
		}
		else if (person[i].job == 't')
		{
			printf("Please input position:");
			scanf_s("%s", person[i].category.position,10);
		}
		printf("\n\n");
	}
	printf("number  name    sex     job     class/position\n");
	for (i = 0; i < 2; i++)
	{
		if (person[i].job == 's')
		{
			printf("%-8d%-8s%-8c%-8c%-8d\n", person[i].num, person[i].name, person[i].sex, person[i].job, person[i].category.banji);
		}
		if (person[i].job == 't')
		{
			printf("%-8d%-8s%-8c%-8c%-8s\n", person[i].num, person[i].name, person[i].sex, person[i].job, person[i].category.position);
		}
	}
}
  • 写回答

2条回答 默认 最新

  • cpp_learners 2021-03-11 13:52
    关注

    由输入缓冲区引起的。每次输入前清空一下输入缓冲区即可!

    #include <stdio.h>
    int main() {
    	struct {
    		int num;
    		char name[10];
    		char sex;
    		char job;
    		union {
    			int banji;
    			char position[10];
    		}category;
    	}person[2];
    	char c;
    	int i;
    	for (i = 0; i < 2; i++) {
    		printf("Please input num:");
    		scanf_s("%d", &person[i].num);
    		while ((c = getchar()) != '\n');    // 清空输入缓冲区
    
    		printf("Please input name:");
    		scanf_s("%s", person[i].name, 10);
    		while ((c = getchar()) != '\n');
    
    		printf("Please select sex:");
    		scanf_s("%c", &person[i].sex);
    		while ((c = getchar()) != '\n');
    
    		while ((person[i].sex != 'f') && (person[i].sex != 'm')) {
    			printf("Sex input error!\n");
    			printf("Please select sex again:");
    			scanf_s("%c", &person[i].sex);
    		}
    		//while ((c = getchar()) != '\n');
    
    		printf("Please select job:");
    		scanf_s("%c", &person[i].job);
    		while ((c = getchar()) != '\n');
    
    		while ((person[i].job != 's') && (person[i].job != 't')) {
    			printf("Job input error!\n");
    			printf("Please select job again:");
    			scanf_s("%c", &person[i].job);
    		}
    		//while ((c = getchar()) != '\n');
    
    		if (person[i].job == 's') {
    			printf("Please input class:");
    			scanf_s("%d", &person[i].category.banji);
    		} else if (person[i].job == 't') {
    			printf("Please input position:");
    			scanf_s("%s", person[i].category.position, 10);
    		}
    		printf("\n\n");
    	}
    	printf("number  name    sex     job     class/position\n");
    	for (i = 0; i < 2; i++) {
    		if (person[i].job == 's') {
    			printf("%-8d%-8s%-8c%-8c%-8d\n", person[i].num, person[i].name, person[i].sex, person[i].job, person[i].category.banji);
    		}
    		if (person[i].job == 't') {
    			printf("%-8d%-8s%-8c%-8c%-8s\n", person[i].num, person[i].name, person[i].sex, person[i].job, person[i].category.position);
    		}
    	}
    }
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥50 silvaco GaN HEMT有栅极场板的击穿电压仿真问题
  • ¥15 谁会P4语言啊,我想请教一下
  • ¥20 win11无法启动 持续蓝屏且系统还原失败,无法开启系统保护
  • ¥15 哪个tomcat中startup一直一闪而过 找不出问题
  • ¥15 这个怎么改成直流激励源给加热电阻提供5a电流呀
  • ¥50 求解vmware的网络模式问题 别拿AI回答
  • ¥24 EFS加密后,在同一台电脑解密出错,证书界面找不到对应指纹的证书,未备份证书,求在原电脑解密的方法,可行即采纳
  • ¥15 springboot 3.0 实现Security 6.x版本集成
  • ¥15 PHP-8.1 镜像无法用dockerfile里的CMD命令启动 只能进入容器启动,如何解决?(操作系统-ubuntu)
  • ¥30 请帮我解决一下下面六个代码
  • ¥70 三菱FX系列PLC上位机串口下指令置位M64和M65,这两条指令分别是什么呢?