Search found 1 match

by asufcis
Sat Dec 24, 2011 6:25 pm
Forum: Volume 103 (10300-10399)
Topic: 10327 - Flip Sort
Replies: 81
Views: 35471

Re: 10327 - Flip Sort

I'm gettin WA don'y know why ?

#include <iostream>
#include <iomanip>

using namespace std;
int main ()
{
//freopen("input.in", "r", stdin);

int n,x[1003];
while(cin>>n)
{
for(int i=0;i<n;i++)
{cin>>x[i];}

int count=0;
///////////ARRANGING ARRAY (SORTING) --->HERE ASCENDING FOR EXAMPLE ...

Go to advanced search