解题思路:
注意事项: 输入的i不一定比j小
参考代码:
#include<iostream>
using namespace std;
int main(){
int i,j;
while(cin>>i>>j){
int maximum=0;
cout<<i<<" "<<j<<" ";
int CycleLength(int number);
if(i>j){
int temp;
temp=i;
i=j;
j=temp;
}
for(int k=i;k<=j;k++){
if(maximum<CycleLength(k))
maximum=CycleLength(k);
}
cout<<maximum<<endl;
}
}
int CycleLength(int number){
int count=1;
while(number!=1){
if(number%2==0)
number/=2;
else
number=number*3+1;
count++;
}
return count;
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题5.6 (C语言代码)浏览:580 |
C语言训练-亲密数 (C语言描述,反正怎么都能对)浏览:2256 |
C语言程序设计教程(第三版)课后习题10.2 (C语言代码)浏览:755 |
C语言程序设计教程(第三版)课后习题10.3 (C语言代码)浏览:523 |
C二级辅导-温度转换 (C语言代码)浏览:802 |
计算质因子 (C语言代码)浏览:778 |
判定字符位置 (C语言代码)浏览:849 |
C语言程序设计教程(第三版)课后习题10.5 (C语言代码)浏览:586 |
2004年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:627 |
母牛的故事 (java语言代码)浏览:896 |