#include
#define PASS 50
int main(void)
{
char password[PASS];
char password2[PASS];
int ok;
printf("現在請您設定您的password:______\b\b\b\b\b\b");
gets(password);
printf("好的您的password是:%s\n",password);
do
{
printf("請重新輸入:______\b\b\b\b\b\b");
gets(password2);
}
while(strcmp(password2 , password));
printf("OK!");
return 0;
}
//注意!!! 如果輸入 不是”數字” 會變成 Infinite loop 喔 要注意啦
//等我想改時在改吧~ 事實上是自己不會改啦)~~~
//如果可以請哪位大哥教一下吧~
//以改好不會有問題1月8日Update