-
-
[原创]第一题:无限流[签到题] wp
-
发表于: 2019-12-1 16:35 1964
-
以输入password的数字作为下标取"cuk!ogl"的字符,结果等于"goluck!"即正确。
故password为5461023!
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | char str[8]; const char *input; //输入的password const char *buf = "cuk!ogl" ; for ( int i = 0; input[i] != 0; i++) { if ( input[i] > '9' || input[i] < '0' ) { //出现不是数字的则错误 wrong_exit(); } else { //以password的数字作为下标取buf的字符 str[i] = buf[input[i] - '0' ]; } } str[i] = '\0' ; if ( ! strcmp (str, "goluck!" ) ) { //正确 Correct(); } else { //错误 wrong_exit(); } |
赞赏
他的文章
赞赏
雪币:
留言: