jose2.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:2k
源码类别:

C#编程

开发平台:

Visual C++

  1. //******************************
  2. //**    Josephus问题解法二    **
  3. //**    jose2.cpp             **
  4. //******************************
  5. #include <iostream.h>
  6. #include <iomanip.h>
  7. struct jose         //小孩结点
  8. {
  9.   int code;
  10.   jose* next;
  11. };
  12. void main()
  13. {
  14.   //赋初值
  15.   int numOfBoys,interval;
  16.   cout <<"please input the number of boys,n"  //小孩数