Create 1852.cpp

pull/45/head
Kirigaya Kazuto 2016-10-20 20:58:02 +08:00 committed by GitHub
parent bcbb7fac92
commit bf120b3cdd
1 changed files with 38 additions and 0 deletions

38
QUSTOJ/1852.cpp Normal file
View File

@ -0,0 +1,38 @@
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
using namespace std;
int a[2048];
int b[2048];
int c;
int d;
int main()
{
int t;
int tmp;
scanf("%d",&t);
for(int i=0;i<t;i++)
{
scanf("%d",&tmp);
if(tmp<=0)
{
a[c++]=tmp;
}
else
{
b[d++]=tmp;
}
}
for(int i=0;i<c-1;i++)
{
printf("%d ",a[i]);
}
printf("%d\n",a[c-1]);
for(int i=0;i<d-1;i++)
{
printf("%d ",b[i]);
}
printf("%d\n",b[d-1]);
return 0;
}