鱼C论坛

 找回密码
 立即注册

队列 加密数字串

已有 328 次阅读2019-11-26 16:22

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <windows.h>

struct queue {
    int data[100];
    int head ;
    int tail ;
};

int main ()
{
    printf("神奇的数字串加密方法,可以用作账号的密码哦\n");
    struct queue q ;
    q.head = 1 ;
    q.tail = 1 ;
    int size ;
    printf("你想输入多少个数?\n");
    scanf("%d",&size);
    printf("输入的时候,相邻两数之间记得用空格隔开哦\n");
    for (int i = 1 ; i <= size ; i++ )
    {
        scanf("%d",&q.data[q.tail]);
        q.tail ++ ;
    }
    printf("系统正在加密中,请稍后......\n");
    Sleep(5000);
    printf("加密后的数字串如下:\n");
    while (q.head < q.tail)
    {
        printf("%d ",q.data[q.head]);
        q.head ++ ;
        q.data[q.tail] = q.data[q.head];
        q.tail ++ ;
        q.head ++ ;
    }
    return 0 ;
}

路过

鸡蛋

鲜花

握手

雷人

评论 (0 个评论)

facelist

您需要登录后才可以评论 登录 | 立即注册

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-17 02:53

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

返回顶部