level 1
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
void main()
{
int a[9]={1,2,3,4,5,6,7,8},b[9],c;
printf(""please input your password");
get(b);
c=strcmp(a,b);
if(c==0) printf("right");
else printf("wrong");
}
2014年05月29日 12点05分