fork(2) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int c, n;
  6. cout<<"Podaj c: "<<endl;
  7. cin>>c;
  8. cout<<"Podaj n: "<<endl;
  9. cin>>n;
  10. for(int i=1;i<=n;++i) {
  11. if(c%2) {
  12. c=3*c+1;
  13. } else {
  14. c=c/2;
  15. }
  16. cout<<"i="<<i<<", c="<<c<<endl;
  17. }
  18. return 0;
  19. }
Success #stdin #stdout 0s 16048KB
stdin
5 2
stdout
Podaj c: 
Podaj n: 
i=1, c=16
i=2, c=8