Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.34 KB | None | 0 0
  1. #include<iostream>
  2. using namespace std;
  3.  
  4. int main () {
  5.     cout << "Hello world MEINE FREUNDE!" << endl;
  6.     int i,n,s;
  7.     cout<<"Podaj ilosc liczb UZYTKOWNIKU ";
  8.     cin>>n;
  9.     i=1;
  10.     s=1;
  11.     while (i<=n)
  12.     {  
  13.         s=s*i;
  14.         i++;
  15.     }
  16.     cout<<"Oto twoja silna silnia z "<<n<<" liczb wynosi "<<s;
  17.     return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement