杭电 acm 我这个代码为什么一直提示 Presentation Error http:⼀⼀acm.hdu.edu.cn⼀showproblem.php?pid=1002

2024-12-16 04:49:53
推荐回答(1个)
回答1:

这个错误说明你的程序是对的,只是输出的格式是有误。你没看到题目,每2个测试数据才空一行,故最后那个是只要一个回车就行了。
把main函数里面的:
printf("%s\n\n",ch[i]);
改为:
printf("%s\n",ch[i]);
if(i!=count-1)
printf("\n");
这样就能AC了~~