rootuss

f1

Nov 14th, 2016
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.73 KB | None | 0 0
  1. #include <iostream>
  2. #include <ctime>
  3. #include <cstdlib>
  4.  
  5. using namespace std;
  6.  
  7. int y;
  8. float silnia(int s)
  9. {
  10.     if (s==0)
  11.     {
  12.         return 1;
  13.     }
  14.     else
  15.         return silnia(s-1)*s;
  16. }
  17.  
  18. float suma(int su)
  19. {
  20.     int z=1, sum=0;
  21.       while (z<=su)
  22.       {
  23.           sum=sum+z;
  24.           z++;
  25.  
  26.       }
  27.       //cout<<sum<<endl;
  28.       return sum;
  29.  
  30. }
  31.  
  32.  
  33. int main()
  34. {
  35.     srand(time(NULL));
  36.     int x = 5+ rand()%6;
  37.     cout<<"liczba x: "<<endl;
  38.     cout<<x<<endl;
  39.  
  40.     cout << "Podaj y: " << endl;
  41.     cin>>y;
  42.  
  43.     if (y<=0)
  44.     {
  45.         cout<<"podaj poprawne y"<<endl;
  46.         cin>>y;
  47.     }
  48.     float wynik;
  49.     wynik=(silnia(x)+silnia(y))/suma(y);
  50.     cout<<"wynik: "<<wynik;
  51.  
  52.     return 0;
  53. }
Add Comment
Please, Sign In to add comment