杭电 OJ ACM 2020 题,我写的代码运行没问题但是总是WA,求指点

2024-12-04 07:29:41
推荐回答(1个)
回答1:

不要用double,用int
排序也有问题

#include
#include
using namespace std;

bool cmp(int a,int b)
{
return abs(a)}
int main()
{
int n,i,j;
int x[100],a;
while(cin>>n&&n!=0)
{
for(i=0;i cin>>x[i];
sort(x,x+n,cmp);
for(i=n-1;i>-1;i--)//for(i=n-1;i>=0;i--)
if(i!=0) cout< else cout< }
}