#include "time.h"#include <stdio.h>#include "stdlib.h"#include "string.h"#define XINXI 2main(){ char LY[5] = "leiyi"; char PN[4] = "puni"; int leiyi[XINXI] = {2,3}; int pini[XINXI] = {3,4}; char playerTypeInformation[100] =""; gets(playerTypeInformation); if (strcmp(playerTypeInformation,"LY")==0) printf ("玩家输入的精灵是雷伊"); else if (strcmp(playerTypeInformation,"PN")==0) printf ("玩家输入的信息是谱尼"); else printf ("玩家输入的信息不存在");}这是源代码,下图是,未构建直接运行的情况,构建之后运行就显示的是“玩家输入的信息不存在”