091009 开始界面

    技术2022-05-12  24

    #include "iostream" #include "math.h"

    #define max_len 65535

    using namespace std;

    void rFile(int fID){ cout<<"读取"<<fID<<"号文件。"<<endl;

    }

    void jus()//判断语句{ char just; int fID;

     for(int i=0;;i++) {  cout<<"输入要读取的文件序号:";  cin>>fID;  cout<<"读取"<<fID<<"号文件。确定(y)?";  cin>>just;  if(just=='y')  {   rFile(fID);  }   } }

    void main() { jus(); }

     


    最新回复(0)