No older revisions available
No older revisions available
~cpp #include <iostream> #include <fstream> #include <string> 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; } } }