简单银行业务模拟

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#include <iostream>
#include <queue>
using namespace std;
int main()
{
queue <int> a;
queue <int> b;//偶数
int n;
cin>>n;
int x;
for(int i=0;i<n;i++)
{
cin>>x;
if(x%2==0)
{
b.push(x);
}
else
{
a.push(x);//奇数
}
}



//
if(a.empty())
{
cout<<b.front();
b.pop();
while(!b.empty())
{
cout<<" "<<b.front();
b.pop();
}
return 0;
}
if(b.empty())
{
cout<<a.front();
a.pop();
while(!a.empty())
{
cout<<" "<<a.front();
a.pop();
}
return 0;

}
int flag=0;
while(!a.empty()&&!b.empty())
{
if(flag==0)
{
cout<<a.front();
flag++;
}

else
cout<<" "<<a.front();
a.pop();
cout<<" "<<a.front();
a.pop();
cout<<" "<<b.front();
b.pop();
}
while(!a.empty())
{
cout<<" "<<a.front();
a.pop();
}
while(!b.empty())
{
cout<<" "<<b.front();
b.pop();
}


}