帮忙找一下错误,谢谢
代码如下:
程序代码:#include <stdio.h>
#include <stdlib.h>
int main()
{
int price = 3, gue;
printf("————————本游戏由孙大大制作————————\n");
scanf("%d", &gue);
if (gue<price)
{
printf("你的数值小了!\n");
}
if (gue>price)
{
printf("你的数值大了!\n");
}
else
{
printf("阁下,神算啊!猜对了!!!\n");
}
system("pause");
return 0;
}








