C语言CLion出现问题,无结果法运行


#include<stdio.h>
int main()
{

int x,y;
scanf("%d",&x);
if(x<0)
y=-1;
else
if(x>0)
y=1;
else
y=0;
printf("x=%d,y=%d\n",x,y);
return 0;
}

CLion无法出现结果
Error during pretty printers setup: Undefined info command: "pretty-printer". Try "help info".

Some features and performance optimizations will not be available.



可以运行,不是代码问题

不知道你这个问题是否已经解决, 如果还没有解决的话:

如果你已经解决了该问题, 非常希望你能够分享一下解决方案, 写成博客, 将相关链接放在评论区, 以帮助更多的人 ^-^