#include <fstream> #include <iostream> using namespace std; int main() { ifstream inf("login.txt"); if(!inf) { cerr<<"login.txt 파일을 읽을 수 없습니다."<<endl; return 1; } string one, two, logTable[10][2]; int i=0, n=0; inf >> one >> two; while(inf) { logTable[i][0]=one; logTable[i][1]=two; cout << logTable[i][0] << " ..