PAT A1120


水题,没什么可说的

#include
#include
#include
#include
using namespace std;
using std::vector;
const int maxn=100;
bool hashTable[maxn]={false};
vector v;
int main(){
    int n;
    int num;
    scanf("%d",&n);
    for(int i=0;i

你可能感兴趣的:(算法,c++)