#include<iostream>
#include<string>
using namespace std;
int main()
{
int n,cal=0,j;
string a[10001];
cin>>n;
for(int i=0;i<n;i++)
{
int count=0;
cin>>a[i];
for(j=0;j<i;j++)
{
if(a[i]==a[j])
{
cout<<"Old! "<<j+1<<endl;
break;
}
else count++;
}
if(count==i) cout<<"New! "<<i+1<<endl;
}
}
這裡 WA 因為只輸出五行
有人知道原因嗎?
#include
#include
using namespace std;
int main()
{
int n,cal=0,j;
string a[10001];
cin>>n;
for(int i=0;i {
int count=0;
cin>>a[i];
for(j=0;j {
if(a[i]==a[j])
{
cout<<"Old! "< break;
}
else count++;
}
if(count==i) cout<<"New! "< }
}這裡 WA 因為只輸出五行
有人知道原因嗎?
有多組測資