码迷,mamicode.com
首页 > 其他好文 > 详细

卡片游戏

时间:2015-04-17 09:36:04      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:

#include "stdafx.h"
#include <stdio.h>
#include <stdlib.h>
const int MAXN = 50;
int queue[MAXN];
int main()
{
    int n,front,rear;
    scanf_s("%d",&n,sizeof(n));
    for(int i = 0; i < n; i++)
        queue[i] = i+1;
    front = 0, rear = n;
    while(front < rear)
    {
        printf("%d",queue[front++]);
        queue[rear++] = queue[front++];
    }
    system("pause");
    return 0;

 

卡片游戏

标签:

原文地址:http://www.cnblogs.com/joyclub/p/4433947.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!