没有任何输出结果,请各位大佬帮我看看问题出在哪,拜托啦~#include <stdio.h>#include <stdlib.h>struct Queue { int data[100]; int front; int rear;};int main() { struct Queue L; int i; L.front = 1; L.rear = 1; printf("请依次输入解密前的电话号码(11位):\n"); for (i = 0; i < 11; i++) { scanf( "%d",&L.data[L.rear]); //从队尾插入 L.rear++; } while (L.front < L.rear) { printf("%d",L.data[L.front]); L.front++;//出队 L.data[L.rear] = L.data[L.front]; L.rear++; L.front++; } getchar();getchar(); return 0;}