赞
踩
代码如下:
#include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; char a[101][64]; int i,j; for(i=0;i<n;i++) { for(j=0;j<64;j++) { cin>>a[i][j]; } } int temp=0,flag=1; for(i=0;i<n;i++) { flag=1; for(j=0;j<i;j++) { for(int k=0;k<64;k++) { if(a[i][k]==a[j][k]) { temp=1; } if(a[i][k]!=a[j][k]) { temp=0; break; } } if(temp==1) { flag++; } } cout<<flag<<endl; } return 0; }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。