#include
#include
#include
using namespace std;
#define max 20
void kCreate();
char k[max][max]={};
int main()
{
kCreate(); //建立K表
cout << "Hello world!" << endl;
return 0;
}
void kCreate()
{
ifstream files("ktable.txt");
if(!files)
{
cerr<<"k表创建失败"<<endl;
}
else
{
int num1=0;
char ch;
//cout << ch<<endl;
while(files)
{
int num2=0;
ch=files.get();
while(ch!='\n')
{
k[num1][num2]=ch;
cout <<k[num1][num2] <<endl;
num2=num2+1;
ch=files.get();
}
num1=num1+1;
}
}
files.close();
}