c++ searching in a file

I have such a program:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
#include <iostream>
#include <conio.h>
#include <stdio.h>
#include <cstdlib>
#include <string.h>
#include <stdlib.h>
#include <fstream>

using namespace std;


class baza 
{
      public:
             int m;
             string nazwa;
             int kcal;
             
             int menu(int m);
             void wczytywanie();
             void historia();
             void kalorie(string nazwa);
             string produkt(int kcal);
             int bilans();
             void dzienne_zestawienie();
             void dieta();
             void swoje_zestawienie();
             void informacje();
             
             
};

void baza::kalorie(string nazwa)
{ 
  string produkt,linia;
  int kal;

  ifstream plik ("kalorie.txt");

  if (plik.is_open())
  {
     while ( plik.good() )
     {
           getline (plik,linia);
           produkt = linia.substr(0, linia.rfind(" "));
           kal = atoi(linia.substr(linia.rfind(" "),linia.size()-linia.rfind(" ")).c_str());

             if(produkt == nazwa)
             {
              cout << "kalorie na 100g:  "<< kal << endl; 
              break ;
              }
              
              }

              plik.close();
              }


} 

string baza::produkt(int kcal)
{
  string produkt,linia;
  int kal;
  string *produkty;
  produkty = new string [1000];

  ifstream plik ("kalorie.txt");

  if (plik.is_open())
  {
     while ( plik.good() )
     {
           getline (plik,linia);
           produkt = linia.substr(0, linia.rfind(" "));
           kal = atoi(linia.substr(linia.rfind(" "),linia.size()-linia.rfind(" ")).c_str());
           if(kal <= kcal)
             {
              cout << "produkt o takiej ilosci kalorii lub mniejszej:  "<< produkt << endl; 
              break ;
              }
              }

              plik.close();
              }
              
}
       
        
int baza::menu( int m )
{
    poczatek:
    system("cls"); 
    cout << "                     BAZA KALORII" << endl;
    cout << "     ==============================================" << endl;
    cout << "                         WITAJ!" << endl;
    cout << "Ten program ulatwi ci zdrowo sie odzywiac oraz odchudzac :)" << endl << endl;
    cout << "           [1] Ilość kalorii na 100g produktu" << endl;
    cout << "           [2] Produkt o wybranej ilosci kalorii" << endl;
    cout << "           [3] Twoj bilans dzienny" << endl;
    cout << "           [4] Dzienne zestawienia posilkow" << endl;
    cout << "           [5] Odpowiednia dla ciebie dieta" << endl;
    cout << "           [6] Historia" << endl;
    cout << "           [7] Twoje zestawienia posilkow" << endl;
    cout << "           [8] Przydatne informacje" << endl;   
    cout << "           [0] Koniec programu" << endl << endl;
    cin >> m;
    char key = 0;
    system("cls");
    do {
    switch (m)
    {
           case 1:{
                string nazwa;
                baza nowa_nazwa;
                cout << "Wprowadz nazwe produktu" << endl;
                cin >> nazwa;
                cout << endl;
                nowa_nazwa.kalorie(nazwa);
                break;}
                
           case 2:{
                int kcal;
                baza nowe_kalorie;
                cout << "Wprowadz ilosc kalorii do ktorej bedzie szukany produkt" << endl;
                cin >> kcal;
                cout << endl;
                nowe_kalorie.produkt(kcal);
                break;}
                
           case 3:
                { }
                break;
                
           case 4:
                { }
                break;
                
           case 5:
                { }
                break;
                
           case 6:
                { }
                break;
                
           case 7:
                { }
                break;
                
           case 8:
                { }
                break;
           
           case 0:
                { cout << "Bye Bye :)";
                   break;}
           default:{
                   cout << "Niepoprawne dzialanie" << endl;
                   }
                   
                   }
   cout << "\nAby zakonczyc wcisnij 2xESC."<<endl;
        cout <<"Aby zaczac od nowa wcisnij ENTER."<<endl<<endl;
        do {
            key = getch();
            if(key != 27)  goto poczatek;
              
        }while (key != 27);
        
    } while (key != 27);

    
}


int main()
{
    int m;
    baza nowy;
    nowy.menu(m);

    

    system("PAUSE");
    return 0;
}

the funktion produkt(int kcal) is searching products that have less or the same kalories that the user has written. this funktion is displaying one product and then program is bracking up.
A part of the file:
Actimel 88
Advocat 50
Agrest 60

I am waiting for your ideas
Last edited on
this funktion is displaying one product and then program is bracking up.
Is that your problem that the loop stops after showing the first product? If so on line 81 you find the break; that does it.

Most of your code is in (I think) Polish that makes it hard to understand what's going on.
Topic archived. No new replies allowed.