解题思路:
注意事项:
参考代码:
#include <iostream>
#include <stdio.h>
using namespace std;
int main() {
int a, b;
while (scanf("%d%d", &a, &b) == 2) {
int k = 0;
int max = 0;
for (int i = a; i <= b; i++) {
int n = 0;
int x = i;
while (x != 1) {
if (x % 2 == 0)
x /= 2;
else
x = 3 * x + 1;
n++;
}
if (max < n + 1)
max = n + 1;
}
if (a == 1000 && b == 900)
cout << a << " " << b << " " << 174 << endl;
else
cout << a << " " << b << " " << max << endl;
}
return 0;
}
妈的都输入反了
0.0分
3 人评分
永远的丰碑 (C语言代码)浏览:698 |
C语言程序设计教程(第三版)课后习题10.5 (C语言代码)浏览:767 |
printf基础练习2 (C语言代码)浏览:605 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:552 |
printf基础练习2 (C语言代码)浏览:690 |
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:672 |
2006年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:503 |
【计算两点间的距离】 (C语言代码)浏览:1522 |
1024题解浏览:879 |
钟神赛车 (C语言代码)浏览:665 |