解密规则:首先将第1个数删除,紧接着将第2个数放到这串数的末尾,再将第3个数删除并将第4个数放到这串数的末尾,再将第5个数删除……直至剩下最后一个数,将最后一个数也删除。按照刚才删除的顺序,把这些删除的数连在一起就是正确的QQ号。经过加密的一串数为:631758924
#include<stdio.h>int main(){ int a[102]={0,6,3,1,7,5,8,9,2,4},head,tail; head=1; tail=10; while(head<tail) { printf("%d",a[head]); head++; a[tail]=a[head]; tail++; head++; } return 0;}
转载于:https://www.cnblogs.com/AquamarineOnly/p/5577776.html
相关资源:JAVA上百实例源码以及开源项目