摘要: #include <iostream> using namespace std; int main(){ int n; cin >> n; int i = 0; while(n!=1) { i++; if(n%2==1) { n = (3 * n + 1)/2; } else { n = n / 2 阅读全文
posted @ 2017-07-24 19:32 diamondDemand 阅读(147) 评论(0) 推荐(0) 编辑