The site is loading…

https://docs.google.com/document/d/1H8-kF2jE0MuSrao__M93YroymuTdUKxdNlAeak5MHOk/edit

  1. #include <iostream>
  2. #include <fstream>
  3. #include <vector>
  4.  
  5. using namespace std;
  6.  
  7. void beolvasas(vector<double> &x);
  8. void beolvasas_file(vector<double> &x);
  9. void fel1(const vector<double> hom, double &atlag);
  10. void fel3(const vector<double> hom, int &leghidegebbnap);
  11. void fel7(const vector<double> hom, bool &van, int &ind);
  12. void ellkiiras(const vector<double> &hom);
  13.  
  14. int main()
  15. {
  16.     //double hom[MAXN];
  17.     vector<double> hom;
  18.  
  19.     //beolvasas(hom);
  20.     beolvasas_file(hom);
  21.     ellkiiras(hom);
  22.  
  23.     double atlag;
  24.     fel1(hom, atlag);
  25.     cout << "Atlaghom= " << atlag << endl;
  26.  
  27.     int leghidegebbnap;
  28.     fel3(hom, leghidegebbnap);
  29.     cout << "Leghidegebbnap= " << leghidegebbnap << endl;
  30.  
  31.     bool van;
  32.     int ind;
  33.     fel7(hom, van, ind);
  34.     if (van)
  35.     {
  36.         cout << "= a szomszedjaval: " << ind << endl;
  37.     }
  38.     else
  39.     {
  40.         cout << "Nincs = a szomszedjaval" << endl;
  41.     }
  42.  
  43.     return 0;
  44. }
  45.  
  46. void beolvasas(vector<double> &x)
  47. {
  48.     int n;
  49.     cout << "n=";
  50.     cin >> n;
  51.     x.resize(n);
  52.     for (int i=0; i<n; ++i)
  53.     {
  54.         cout << i << ". hom: ";
  55.         cin >> x[i];
  56.     }
  57. }
  58.  
  59. void beolvasas_file(vector<double> &x)
  60. {
  61.     double sv;
  62.     //ifstream f("be.txt");
  63.     ifstream f;
  64.     string fajlnev;
  65.     bool hiba;
  66.  
  67.     do
  68.     {
  69.         cout << "Fajlnev: ";
  70.         cin >> fajlnev;
  71.         f.open(fajlnev.c_str());
  72.         hiba=f.fail();
  73.         if (hiba)
  74.         {
  75.             cout << "Nem jo fajlnev" << endl;
  76.         }
  77.     }
  78.     while(hiba);
  79.  
  80.     /*while (!f.eof())
  81.     {
  82.         f >> sv;
  83.         if (f.good())
  84.         {
  85.             x.push_back(sv);
  86.         }
  87.     }*/
  88.  
  89.     f >> sv;
  90.     while (!f.eof())
  91.     {
  92.         x.push_back(sv);
  93.         f >> sv;
  94.     }
  95.  
  96.     f.close();
  97. }
  98.  
  99. void ellkiiras(const vector<double> &hom)
  100. {
  101.     for (int i=0; i<hom.size(); ++i)
  102.     {
  103.         cout << i << ".: " << hom[i] << endl;
  104.     }
  105. }
  106.  
  107. void fel1(const vector<double> hom, double &atlag)
  108. {
  109.     double s=0;
  110.     int n=hom.size();
  111.     for (int i=0; i<n; ++i)
  112.     {
  113.         s+=hom[i];
  114.     }
  115.     atlag=s/n;
  116. }
  117.  
  118. void fel3(const vector<double> hom, int &leghidegebbnap)
  119. {
  120.     double max=hom[0];
  121.     leghidegebbnap=0;
  122.     for (int i=0; i<hom.size(); ++i)
  123.     {
  124.         if (hom[i]<max)
  125.         {
  126.             leghidegebbnap=i;
  127.             max=hom[i];
  128.         }
  129.     }
  130. }
  131.  
  132. void fel7(const vector<double> hom, bool &van, int &ind)
  133. {
  134.     ind=0;
  135.     while (ind<hom.size() && hom[ind]!=hom[ind+1])
  136.     {
  137.         ++ind;
  138.     }
  139.     van=ind<hom.size();
  140. }

Leave a Reply