{{{~cpp #include #include #include using namespace std; int main() { ifstream fin; fin.open("score3.txt"); string temp; int i=0; while(fin >> temp) { cout << temp; i++; if(i==11) { cout << endl; i=1; } } } }}}