8.15C未完成

This commit is contained in:
ljcjames 2022-08-16 09:55:36 +08:00
parent a92b716c4d
commit 769391897e
1 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,48 @@
//weiwancheng
#include <iostream>
#include<cstdio>
#include<algorithm>
#include <cmath>
#include <cstring>
#include <string>
using namespace std;
const int N = 5e4 + 5;
int n;
int a[N];// ÿpartµÄºÄʱ
string s;
inline void initialise()
{
}
int main()
{
int t;
// scanf("%d",&t);
while(1)
{
scanf("%d",&n);
if(n==0)
{
break;
}
initialise();
for(int i=1;i<=n; i++)
{
scanf("%d",&a[i]);
}
while(1)
{
cin>>s;
if(n==0)
{
break;
}
initialise();
for(int i=1;i<=n; i++)
{
scanf("%d",&a[i]);
}
}
}
return 0;
}