#include<iostream>
#include<ctime>
#include<cmath>
#include<sstream>
#include<string>
#include<fstream>
#include<iomanip>
#define MAX 1000
using namespace std;
#pragma once
class Input
{
public:
    Input()
    {
        for( int i = 0;i < MAX;i++ )
            Str_input[i] = '\0';
    }
    char Str_input[MAX];
    void inStr(string str11)
    {
        strcpy(Str_input,str11.c_str());
    }
};
Input.h

相关文章:

  • 2021-10-15
  • 2021-11-08
  • 2021-05-26
  • 2021-10-25
  • 2021-11-20
  • 2021-05-27
  • 2021-08-13
  • 2021-07-13
猜你喜欢
  • 2021-12-18
  • 2022-02-01
  • 2021-05-29
  • 2022-02-24
  • 2021-08-25
  • 2022-01-26
相关资源
相似解决方案