标签:验证 stdin stdio.h def 基础 return 密码 else password
#include<string.h> #include<stdio.h> #define PASSWORD_SIZE 100 #define PASSWORD "myGOODpassword\n" int main() { int count=0; char buff[PASSWORD_SIZE]; for(;;) { printf("please input you passsword:"); fgets(&buff[0],PASSWORD_SIZE,stdin); if(strcmp(&buff[0],PASSWORD)) printf("password not right\ntry again:"); else break; if(++count>3) return -1; } printf("hello,carlos"); return 0; }
最基础的,把密码写在程序里面的验证方法,容易被反汇编找出的那种,高级的加密方式后面再说。
标签:验证 stdin stdio.h def 基础 return 密码 else password
原文地址:http://www.cnblogs.com/enyala/p/7691276.html