Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
collatz
rotti321
Oct 24th, 2017
175
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
text
0.24 KB
| None
|
0
0
raw
download
clone
embed
print
report
#include <iostream>
using namespace std;
int main()
{
int n,k=1;
cin>>n;
while(n!=1)
{
if(n%2==0)
n=n/2;
else
n=3*n+1;
k++;
}
cout<<k;
return 0;
}
Add Comment
Please,
Sign In
to add comment
Public Pastes
Untitled
JSON | 7 min ago | 12.82 KB
APK STRATEGI 5
C++ | 11 min ago | 0.81 KB
Dumps
CSS | 1 hour ago | 0.00 KB
Harvard - Cardiff University (ITS)
XML | 2 hours ago | 9.37 KB
TABLA DEPARTAMENTO [SSMS]
MySQL | 2 hours ago | 0.89 KB
TABLA CARGO INTERNACIONAL [SSMS]
MySQL | 2 hours ago | 1.00 KB
TABLA ORDEN [SSMS]
MySQL | 2 hours ago | 2.40 KB
TABLA DETALLE ORDEN [SSMS]
MySQL | 2 hours ago | 1.40 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!