#include <iostream>#include <fstream>int main(){ using namespace std; unsigned int buff[50]={0}; unsigned i = 0; string S; ifstream file; file.open("medik.txt"); while(getline(file,S)) { if(если в S нашел то что тебя интересует) { отрезаеш лишнее, а нужное ложеш в буфер buff[i] = твое значение; i++; } }return 0;}