zoukankan      html  css  js  c++  java
  • 12月8号报数字游戏

    题目:

    n个人围成一圈,顺序排号。从第一个人开始报数(从13报数),凡报到3的人退出圈子,问一直到最后结束时的退出顺序?

    #include <stdio.h>

     

    #define kKilled -1

     

    int main(int argc, const char * argv[]) {

        int totalMan = 0;//记录总人数

        int array[100] = {}; //保存编号

        int killedNumber = 3;//要杀的编号

        int currentNum = 0; //当前报数的编号

        int currentKilledTotalMan = 0;//记录当前出局了多少人

        

        printf("请输入人数:");

        scanf("%d", &totalMan);

        

        //编号-(从1-n将数字保存到数组里面)

        for (int i = 0; i < totalMan; i++) {

            array[i] = i+1;

        }

        

        //开始杀人

        for (int i = 0; i <totalMan; i++) {

            //判断i对应的这个人是否已经出局

            if (array[i] != -1){

                //没有出局

                currentNum ++;//报数

                

                //判断当前这个人是否是要出局的编号

                if (currentNum == killedNumber){

                    printf("%d ", array[i]);

                    

                    //这个人要出局

                    array[i] = -1;

                    

                    //改变currentNum的值

                    currentNum = 0;

                    

                    //出局人数++

                    currentKilledTotalMan ++;

                    if (currentKilledTotalMan == totalMan) {

                        //出局完了

                        break;

                    }

                }

            }

            

            //判断是否到了结尾

            if (i == (totalMan -1)) {

                //让索引值从新回到起始点0

                i = -1;

            }

        }

        

        //输出

    //    for (int i = 0; i < totalMan; i++) {

    //        printf("%d ", array[i]);

    //    }

        printf(" ");

        return 0;

    }

  • 相关阅读:
    MATLAB调用VISUAL STUDIO 编写的C++函数
    卡尔曼滤波
    资料(不定时更新)
    20201207-总结
    20201126-1 每周例行报告
    20201120-1 每周例行报告
    作业要求 20201112-1 每周例行报告
    20201105-1 每周例行报告
    作业要求 20201029-1 每周例行报告
    作业要求 20201022-1 每周例行报告
  • 原文地址:https://www.cnblogs.com/hmzxwky/p/5030611.html
Copyright © 2011-2022 走看看