码迷,mamicode.com
首页 > 其他好文 > 详细

BZOJ 1666 Usaco 奶牛的数字游戏

时间:2017-09-08 20:29:49      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:image   奶牛   color   scanf   usaco   int   http   com   blog   

技术分享

 

 1 #include <cstdio>
 2 #include <algorithm>
 3  
 4 int n;
 5 int tot;
 6  
 7 int main(){
 8     scanf("%d",&n);
 9     while(n!=1){
10         if(n%2!=0){
11             n=n*3+1;
12             tot++;
13         }
14         else if(n%2==0){
15             n>>=1;
16             tot++;
17         }
18     }
19     printf("%d\n",tot);
20 }

 

BZOJ 1666 Usaco 奶牛的数字游戏

标签:image   奶牛   color   scanf   usaco   int   http   com   blog   

原文地址:http://www.cnblogs.com/OIerLYF/p/7496003.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!